Metadata-Version: 2.4
Name: resonanceX
Version: 0.1.0
Summary: Detect and visualize orbital resonances in exoplanet systems
Home-page: https://github.com/Sugeeta/resonanceX
Author: Sugeeta
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/resonanceX
Project-URL: Repository, https://github.com/yourusername/resonanceX
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit
Requires-Dist: matplotlib
Requires-Dist: pandas
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# resonanceX

resonanceX is a Python package for simulating and analyzing orbital resonances in multi-body systems.

## Features
- N-body simulation using Rebound
- Resonance detection and visualization with matplotlib
- Streamlit interface for interactive exploration
- Lightweight and easy to install

## Installation

Clone the repository:
```bash
git clone https://github.com/your-username/resonanceX.git
cd resonanceX
```

Install dependencies:
```bash
pip install -r requirements.txt
```

## Usage

Launch the Streamlit app:
```bash
streamlit run streamlit_app.py
```

## Project Structure
```
├── resonanceX/
│   .gitignore
│   app.py
│   LICENSE
│   pyproject.toml
│   README.md
│   requirements.txt
│   test_full_pipeline.py
│   ├── datasets/
│   │   nasa_exoplanets.csv
│   ├── resonanceX/
│   │   detector.py
│   │   resonance.py
│   │   simulator.py
│   │   trappist_sim.py
│   │   utils.py
│   │   visualizer.py
│   │   __init__.py
│   │   ├── tests/
│   │   │   test_detector.py
│   │   │   __init__.py
│   │   ├── __pycache__/
│   │   │   detector.cpython-310.pyc
│   │   │   detector.cpython-313.pyc
│   │   │   detector.cpython-314.pyc
│   │   │   resonance.cpython-310.pyc
│   │   │   simulator.cpython-310.pyc
│   │   │   simulator.cpython-313.pyc
│   │   │   trappist_sim.cpython-310.pyc
│   │   │   utils.cpython-310.pyc
│   │   │   utils.cpython-313.pyc
│   │   │   utils.cpython-314.pyc
│   │   │   visualizer.cpython-310.pyc
│   │   │   visualizer.cpython-313.pyc
│   │   │   visualizer.cpython-314.pyc
│   │   │   __init__.cpython-310.pyc
│   │   │   __init__.cpython-313.pyc
│   │   │   __init__.cpython-314.pyc
│   ├── venv/
│   │   pyvenv.cfg
│   │   ├── etc/
│   │   │   ├── jupyter/
│   │   │   │   ├── nbconfig/
│   │   │   │   │   ├── notebook.d/
│   │   │   │   │   │   pydeck.json
│   │   ├── Include/
│   │   ├── Lib/
│   │   │   ├── site-packages/
│   │   │   │   .DS_Store
│   │   │   │   distutils-precedence.pth
│   │   │   │   librebound.cp310-win_amd64.pyd
│   │   │   │   numpy-2.2.6-cp310-cp310-win_amd64.whl
│   │   │   │   pylab.py
│   │   │   │   scipy-1.15.3-cp310-cp310-win_amd64.whl
│   │   │   │   six.py
│   │   │   │   typing_extensions.py
│   │   │   │   ├── altair/
│   │   │   │   │   py.typed
│   │   │   │   │   theme.py
│   │   │   │   │   _magics.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── expr/
│   │   │   │   │   │   consts.py
│   │   │   │   │   │   core.py
│   │   │   │   │   │   funcs.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   consts.cpython-310.pyc
│   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   funcs.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── jupyter/
│   │   │   │   │   │   jupyter_chart.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── js/
│   │   │   │   │   │   │   index.js
│   │   │   │   │   │   │   README.md
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   jupyter_chart.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── typing/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── utils/
│   │   │   │   │   │   compiler.py
│   │   │   │   │   │   core.py
│   │   │   │   │   │   data.py
│   │   │   │   │   │   deprecation.py
│   │   │   │   │   │   display.py
│   │   │   │   │   │   execeval.py
│   │   │   │   │   │   html.py
│   │   │   │   │   │   mimebundle.py
│   │   │   │   │   │   plugin_registry.py
│   │   │   │   │   │   save.py
│   │   │   │   │   │   schemapi.py
│   │   │   │   │   │   selection.py
│   │   │   │   │   │   server.py
│   │   │   │   │   │   _dfi_types.py
│   │   │   │   │   │   _importers.py
│   │   │   │   │   │   _show.py
│   │   │   │   │   │   _transformed_data.py
│   │   │   │   │   │   _vegafusion_data.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   compiler.cpython-310.pyc
│   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   data.cpython-310.pyc
│   │   │   │   │   │   │   deprecation.cpython-310.pyc
│   │   │   │   │   │   │   display.cpython-310.pyc
│   │   │   │   │   │   │   execeval.cpython-310.pyc
│   │   │   │   │   │   │   html.cpython-310.pyc
│   │   │   │   │   │   │   mimebundle.cpython-310.pyc
│   │   │   │   │   │   │   plugin_registry.cpython-310.pyc
│   │   │   │   │   │   │   save.cpython-310.pyc
│   │   │   │   │   │   │   schemapi.cpython-310.pyc
│   │   │   │   │   │   │   selection.cpython-310.pyc
│   │   │   │   │   │   │   server.cpython-310.pyc
│   │   │   │   │   │   │   _dfi_types.cpython-310.pyc
│   │   │   │   │   │   │   _importers.cpython-310.pyc
│   │   │   │   │   │   │   _show.cpython-310.pyc
│   │   │   │   │   │   │   _transformed_data.cpython-310.pyc
│   │   │   │   │   │   │   _vegafusion_data.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── vegalite/
│   │   │   │   │   │   api.py
│   │   │   │   │   │   data.py
│   │   │   │   │   │   display.py
│   │   │   │   │   │   schema.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── v5/
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   compiler.py
│   │   │   │   │   │   │   data.py
│   │   │   │   │   │   │   display.py
│   │   │   │   │   │   │   theme.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── schema/
│   │   │   │   │   │   │   │   channels.py
│   │   │   │   │   │   │   │   core.py
│   │   │   │   │   │   │   │   mixins.py
│   │   │   │   │   │   │   │   vega-lite-schema.json
│   │   │   │   │   │   │   │   vega-themes.json
│   │   │   │   │   │   │   │   _config.py
│   │   │   │   │   │   │   │   _typing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   channels.cpython-310.pyc
│   │   │   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   │   │   mixins.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _config.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   compiler.cpython-310.pyc
│   │   │   │   │   │   │   │   data.cpython-310.pyc
│   │   │   │   │   │   │   │   display.cpython-310.pyc
│   │   │   │   │   │   │   │   theme.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   data.cpython-310.pyc
│   │   │   │   │   │   │   display.cpython-310.pyc
│   │   │   │   │   │   │   schema.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   theme.cpython-310.pyc
│   │   │   │   │   │   _magics.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── altair-5.5.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── attr/
│   │   │   │   │   converters.py
│   │   │   │   │   converters.pyi
│   │   │   │   │   exceptions.py
│   │   │   │   │   exceptions.pyi
│   │   │   │   │   filters.py
│   │   │   │   │   filters.pyi
│   │   │   │   │   py.typed
│   │   │   │   │   setters.py
│   │   │   │   │   setters.pyi
│   │   │   │   │   validators.py
│   │   │   │   │   validators.pyi
│   │   │   │   │   _cmp.py
│   │   │   │   │   _cmp.pyi
│   │   │   │   │   _compat.py
│   │   │   │   │   _config.py
│   │   │   │   │   _funcs.py
│   │   │   │   │   _make.py
│   │   │   │   │   _next_gen.py
│   │   │   │   │   _typing_compat.pyi
│   │   │   │   │   _version_info.py
│   │   │   │   │   _version_info.pyi
│   │   │   │   │   __init__.py
│   │   │   │   │   __init__.pyi
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   converters.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   filters.cpython-310.pyc
│   │   │   │   │   │   setters.cpython-310.pyc
│   │   │   │   │   │   validators.cpython-310.pyc
│   │   │   │   │   │   _cmp.cpython-310.pyc
│   │   │   │   │   │   _compat.cpython-310.pyc
│   │   │   │   │   │   _config.cpython-310.pyc
│   │   │   │   │   │   _funcs.cpython-310.pyc
│   │   │   │   │   │   _make.cpython-310.pyc
│   │   │   │   │   │   _next_gen.cpython-310.pyc
│   │   │   │   │   │   _version_info.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── attrs/
│   │   │   │   │   converters.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   filters.py
│   │   │   │   │   py.typed
│   │   │   │   │   setters.py
│   │   │   │   │   validators.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __init__.pyi
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   converters.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   filters.cpython-310.pyc
│   │   │   │   │   │   setters.cpython-310.pyc
│   │   │   │   │   │   validators.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── attrs-25.4.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── blinker/
│   │   │   │   │   base.py
│   │   │   │   │   py.typed
│   │   │   │   │   _utilities.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   _utilities.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── blinker-1.9.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE.txt
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   ├── cachetools/
│   │   │   │   │   func.py
│   │   │   │   │   keys.py
│   │   │   │   │   _cached.py
│   │   │   │   │   _cachedmethod.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   func.cpython-310.pyc
│   │   │   │   │   │   keys.cpython-310.pyc
│   │   │   │   │   │   _cached.cpython-310.pyc
│   │   │   │   │   │   _cachedmethod.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── cachetools-6.2.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── certifi/
│   │   │   │   │   cacert.pem
│   │   │   │   │   core.py
│   │   │   │   │   py.typed
│   │   │   │   │   __init__.py
│   │   │   │   │   __main__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   ├── certifi-2025.11.12.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── charset_normalizer/
│   │   │   │   │   api.py
│   │   │   │   │   cd.py
│   │   │   │   │   constant.py
│   │   │   │   │   legacy.py
│   │   │   │   │   md.cp310-win_amd64.pyd
│   │   │   │   │   md.py
│   │   │   │   │   md__mypyc.cp310-win_amd64.pyd
│   │   │   │   │   models.py
│   │   │   │   │   py.typed
│   │   │   │   │   utils.py
│   │   │   │   │   version.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __main__.py
│   │   │   │   │   ├── cli/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   cd.cpython-310.pyc
│   │   │   │   │   │   constant.cpython-310.pyc
│   │   │   │   │   │   legacy.cpython-310.pyc
│   │   │   │   │   │   md.cpython-310.pyc
│   │   │   │   │   │   models.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   ├── charset_normalizer-3.4.4.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── click/
│   │   │   │   │   core.py
│   │   │   │   │   decorators.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   formatting.py
│   │   │   │   │   globals.py
│   │   │   │   │   parser.py
│   │   │   │   │   py.typed
│   │   │   │   │   shell_completion.py
│   │   │   │   │   termui.py
│   │   │   │   │   testing.py
│   │   │   │   │   types.py
│   │   │   │   │   utils.py
│   │   │   │   │   _compat.py
│   │   │   │   │   _termui_impl.py
│   │   │   │   │   _textwrap.py
│   │   │   │   │   _utils.py
│   │   │   │   │   _winconsole.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   decorators.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   formatting.cpython-310.pyc
│   │   │   │   │   │   globals.cpython-310.pyc
│   │   │   │   │   │   parser.cpython-310.pyc
│   │   │   │   │   │   shell_completion.cpython-310.pyc
│   │   │   │   │   │   termui.cpython-310.pyc
│   │   │   │   │   │   testing.cpython-310.pyc
│   │   │   │   │   │   types.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   _compat.cpython-310.pyc
│   │   │   │   │   │   _termui_impl.cpython-310.pyc
│   │   │   │   │   │   _textwrap.cpython-310.pyc
│   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   _winconsole.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── click-8.3.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.txt
│   │   │   │   ├── colorama/
│   │   │   │   │   ansi.py
│   │   │   │   │   ansitowin32.py
│   │   │   │   │   initialise.py
│   │   │   │   │   win32.py
│   │   │   │   │   winterm.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   ansitowin32_test.py
│   │   │   │   │   │   ansi_test.py
│   │   │   │   │   │   initialise_test.py
│   │   │   │   │   │   isatty_test.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   winterm_test.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   ansitowin32_test.cpython-310.pyc
│   │   │   │   │   │   │   ansi_test.cpython-310.pyc
│   │   │   │   │   │   │   initialise_test.cpython-310.pyc
│   │   │   │   │   │   │   isatty_test.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   winterm_test.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   ansi.cpython-310.pyc
│   │   │   │   │   │   ansitowin32.cpython-310.pyc
│   │   │   │   │   │   initialise.cpython-310.pyc
│   │   │   │   │   │   win32.cpython-310.pyc
│   │   │   │   │   │   winterm.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── colorama-0.4.6.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.txt
│   │   │   │   ├── contourpy/
│   │   │   │   │   array.py
│   │   │   │   │   chunk.py
│   │   │   │   │   convert.py
│   │   │   │   │   dechunk.py
│   │   │   │   │   enum_util.py
│   │   │   │   │   py.typed
│   │   │   │   │   typecheck.py
│   │   │   │   │   types.py
│   │   │   │   │   _contourpy.cp310-win_amd64.lib
│   │   │   │   │   _contourpy.cp310-win_amd64.pyd
│   │   │   │   │   _contourpy.pyi
│   │   │   │   │   _version.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── util/
│   │   │   │   │   │   bokeh_renderer.py
│   │   │   │   │   │   bokeh_util.py
│   │   │   │   │   │   data.py
│   │   │   │   │   │   mpl_renderer.py
│   │   │   │   │   │   mpl_util.py
│   │   │   │   │   │   renderer.py
│   │   │   │   │   │   _build_config.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   bokeh_renderer.cpython-310.pyc
│   │   │   │   │   │   │   bokeh_util.cpython-310.pyc
│   │   │   │   │   │   │   data.cpython-310.pyc
│   │   │   │   │   │   │   mpl_renderer.cpython-310.pyc
│   │   │   │   │   │   │   mpl_util.cpython-310.pyc
│   │   │   │   │   │   │   renderer.cpython-310.pyc
│   │   │   │   │   │   │   _build_config.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   chunk.cpython-310.pyc
│   │   │   │   │   │   convert.cpython-310.pyc
│   │   │   │   │   │   dechunk.cpython-310.pyc
│   │   │   │   │   │   enum_util.cpython-310.pyc
│   │   │   │   │   │   typecheck.cpython-310.pyc
│   │   │   │   │   │   types.cpython-310.pyc
│   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── contourpy-1.3.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   ├── cycler/
│   │   │   │   │   py.typed
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── cycler-0.12.1.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── dateutil/
│   │   │   │   │   easter.py
│   │   │   │   │   relativedelta.py
│   │   │   │   │   rrule.py
│   │   │   │   │   tzwin.py
│   │   │   │   │   utils.py
│   │   │   │   │   _common.py
│   │   │   │   │   _version.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── parser/
│   │   │   │   │   │   isoparser.py
│   │   │   │   │   │   _parser.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   isoparser.cpython-310.pyc
│   │   │   │   │   │   │   _parser.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tz/
│   │   │   │   │   │   tz.py
│   │   │   │   │   │   win.py
│   │   │   │   │   │   _common.py
│   │   │   │   │   │   _factories.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   tz.cpython-310.pyc
│   │   │   │   │   │   │   win.cpython-310.pyc
│   │   │   │   │   │   │   _common.cpython-310.pyc
│   │   │   │   │   │   │   _factories.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── zoneinfo/
│   │   │   │   │   │   dateutil-zoneinfo.tar.gz
│   │   │   │   │   │   rebuild.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   rebuild.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   easter.cpython-310.pyc
│   │   │   │   │   │   relativedelta.cpython-310.pyc
│   │   │   │   │   │   rrule.cpython-310.pyc
│   │   │   │   │   │   tzwin.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   _common.cpython-310.pyc
│   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── fontTools/
│   │   │   │   │   afmLib.py
│   │   │   │   │   agl.py
│   │   │   │   │   annotations.py
│   │   │   │   │   fontBuilder.py
│   │   │   │   │   help.py
│   │   │   │   │   tfmLib.py
│   │   │   │   │   ttx.py
│   │   │   │   │   unicode.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __main__.py
│   │   │   │   │   ├── cffLib/
│   │   │   │   │   │   CFF2ToCFF.py
│   │   │   │   │   │   CFFToCFF2.py
│   │   │   │   │   │   specializer.py
│   │   │   │   │   │   transforms.py
│   │   │   │   │   │   width.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   CFF2ToCFF.cpython-310.pyc
│   │   │   │   │   │   │   CFFToCFF2.cpython-310.pyc
│   │   │   │   │   │   │   specializer.cpython-310.pyc
│   │   │   │   │   │   │   transforms.cpython-310.pyc
│   │   │   │   │   │   │   width.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── colorLib/
│   │   │   │   │   │   builder.py
│   │   │   │   │   │   errors.py
│   │   │   │   │   │   geometry.py
│   │   │   │   │   │   table_builder.py
│   │   │   │   │   │   unbuilder.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   builder.cpython-310.pyc
│   │   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   │   geometry.cpython-310.pyc
│   │   │   │   │   │   │   table_builder.cpython-310.pyc
│   │   │   │   │   │   │   unbuilder.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── config/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── cu2qu/
│   │   │   │   │   │   benchmark.py
│   │   │   │   │   │   cli.py
│   │   │   │   │   │   cu2qu.c
│   │   │   │   │   │   cu2qu.cp310-win_amd64.pyd
│   │   │   │   │   │   cu2qu.py
│   │   │   │   │   │   errors.py
│   │   │   │   │   │   ufo.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   benchmark.cpython-310.pyc
│   │   │   │   │   │   │   cli.cpython-310.pyc
│   │   │   │   │   │   │   cu2qu.cpython-310.pyc
│   │   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   │   ufo.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── designspaceLib/
│   │   │   │   │   │   split.py
│   │   │   │   │   │   statNames.py
│   │   │   │   │   │   types.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   split.cpython-310.pyc
│   │   │   │   │   │   │   statNames.cpython-310.pyc
│   │   │   │   │   │   │   types.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── encodings/
│   │   │   │   │   │   codecs.py
│   │   │   │   │   │   MacRoman.py
│   │   │   │   │   │   StandardEncoding.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   codecs.cpython-310.pyc
│   │   │   │   │   │   │   MacRoman.cpython-310.pyc
│   │   │   │   │   │   │   StandardEncoding.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── feaLib/
│   │   │   │   │   │   ast.py
│   │   │   │   │   │   builder.py
│   │   │   │   │   │   error.py
│   │   │   │   │   │   lexer.c
│   │   │   │   │   │   lexer.cp310-win_amd64.pyd
│   │   │   │   │   │   lexer.py
│   │   │   │   │   │   location.py
│   │   │   │   │   │   lookupDebugInfo.py
│   │   │   │   │   │   parser.py
│   │   │   │   │   │   variableScalar.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   ast.cpython-310.pyc
│   │   │   │   │   │   │   builder.cpython-310.pyc
│   │   │   │   │   │   │   error.cpython-310.pyc
│   │   │   │   │   │   │   lexer.cpython-310.pyc
│   │   │   │   │   │   │   location.cpython-310.pyc
│   │   │   │   │   │   │   lookupDebugInfo.cpython-310.pyc
│   │   │   │   │   │   │   parser.cpython-310.pyc
│   │   │   │   │   │   │   variableScalar.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── merge/
│   │   │   │   │   │   base.py
│   │   │   │   │   │   cmap.py
│   │   │   │   │   │   layout.py
│   │   │   │   │   │   options.py
│   │   │   │   │   │   tables.py
│   │   │   │   │   │   unicode.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   cmap.cpython-310.pyc
│   │   │   │   │   │   │   layout.cpython-310.pyc
│   │   │   │   │   │   │   options.cpython-310.pyc
│   │   │   │   │   │   │   tables.cpython-310.pyc
│   │   │   │   │   │   │   unicode.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── misc/
│   │   │   │   │   │   arrayTools.py
│   │   │   │   │   │   bezierTools.c
│   │   │   │   │   │   bezierTools.cp310-win_amd64.pyd
│   │   │   │   │   │   bezierTools.py
│   │   │   │   │   │   classifyTools.py
│   │   │   │   │   │   cliTools.py
│   │   │   │   │   │   configTools.py
│   │   │   │   │   │   cython.py
│   │   │   │   │   │   dictTools.py
│   │   │   │   │   │   eexec.py
│   │   │   │   │   │   encodingTools.py
│   │   │   │   │   │   enumTools.py
│   │   │   │   │   │   etree.py
│   │   │   │   │   │   filenames.py
│   │   │   │   │   │   fixedTools.py
│   │   │   │   │   │   intTools.py
│   │   │   │   │   │   iterTools.py
│   │   │   │   │   │   lazyTools.py
│   │   │   │   │   │   loggingTools.py
│   │   │   │   │   │   macCreatorType.py
│   │   │   │   │   │   macRes.py
│   │   │   │   │   │   psCharStrings.py
│   │   │   │   │   │   psLib.py
│   │   │   │   │   │   psOperators.py
│   │   │   │   │   │   py23.py
│   │   │   │   │   │   roundTools.py
│   │   │   │   │   │   sstruct.py
│   │   │   │   │   │   symfont.py
│   │   │   │   │   │   testTools.py
│   │   │   │   │   │   textTools.py
│   │   │   │   │   │   timeTools.py
│   │   │   │   │   │   transform.py
│   │   │   │   │   │   treeTools.py
│   │   │   │   │   │   vector.py
│   │   │   │   │   │   visitor.py
│   │   │   │   │   │   xmlReader.py
│   │   │   │   │   │   xmlWriter.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── filesystem/
│   │   │   │   │   │   │   _base.py
│   │   │   │   │   │   │   _copy.py
│   │   │   │   │   │   │   _errors.py
│   │   │   │   │   │   │   _info.py
│   │   │   │   │   │   │   _osfs.py
│   │   │   │   │   │   │   _path.py
│   │   │   │   │   │   │   _subfs.py
│   │   │   │   │   │   │   _tempfs.py
│   │   │   │   │   │   │   _tools.py
│   │   │   │   │   │   │   _walk.py
│   │   │   │   │   │   │   _zipfs.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _base.cpython-310.pyc
│   │   │   │   │   │   │   │   _copy.cpython-310.pyc
│   │   │   │   │   │   │   │   _errors.cpython-310.pyc
│   │   │   │   │   │   │   │   _info.cpython-310.pyc
│   │   │   │   │   │   │   │   _osfs.cpython-310.pyc
│   │   │   │   │   │   │   │   _path.cpython-310.pyc
│   │   │   │   │   │   │   │   _subfs.cpython-310.pyc
│   │   │   │   │   │   │   │   _tempfs.cpython-310.pyc
│   │   │   │   │   │   │   │   _tools.cpython-310.pyc
│   │   │   │   │   │   │   │   _walk.cpython-310.pyc
│   │   │   │   │   │   │   │   _zipfs.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── plistlib/
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   arrayTools.cpython-310.pyc
│   │   │   │   │   │   │   bezierTools.cpython-310.pyc
│   │   │   │   │   │   │   classifyTools.cpython-310.pyc
│   │   │   │   │   │   │   cliTools.cpython-310.pyc
│   │   │   │   │   │   │   configTools.cpython-310.pyc
│   │   │   │   │   │   │   cython.cpython-310.pyc
│   │   │   │   │   │   │   dictTools.cpython-310.pyc
│   │   │   │   │   │   │   eexec.cpython-310.pyc
│   │   │   │   │   │   │   encodingTools.cpython-310.pyc
│   │   │   │   │   │   │   enumTools.cpython-310.pyc
│   │   │   │   │   │   │   etree.cpython-310.pyc
│   │   │   │   │   │   │   filenames.cpython-310.pyc
│   │   │   │   │   │   │   fixedTools.cpython-310.pyc
│   │   │   │   │   │   │   intTools.cpython-310.pyc
│   │   │   │   │   │   │   iterTools.cpython-310.pyc
│   │   │   │   │   │   │   lazyTools.cpython-310.pyc
│   │   │   │   │   │   │   loggingTools.cpython-310.pyc
│   │   │   │   │   │   │   macCreatorType.cpython-310.pyc
│   │   │   │   │   │   │   macRes.cpython-310.pyc
│   │   │   │   │   │   │   psCharStrings.cpython-310.pyc
│   │   │   │   │   │   │   psLib.cpython-310.pyc
│   │   │   │   │   │   │   psOperators.cpython-310.pyc
│   │   │   │   │   │   │   py23.cpython-310.pyc
│   │   │   │   │   │   │   roundTools.cpython-310.pyc
│   │   │   │   │   │   │   sstruct.cpython-310.pyc
│   │   │   │   │   │   │   symfont.cpython-310.pyc
│   │   │   │   │   │   │   testTools.cpython-310.pyc
│   │   │   │   │   │   │   textTools.cpython-310.pyc
│   │   │   │   │   │   │   timeTools.cpython-310.pyc
│   │   │   │   │   │   │   transform.cpython-310.pyc
│   │   │   │   │   │   │   treeTools.cpython-310.pyc
│   │   │   │   │   │   │   vector.cpython-310.pyc
│   │   │   │   │   │   │   visitor.cpython-310.pyc
│   │   │   │   │   │   │   xmlReader.cpython-310.pyc
│   │   │   │   │   │   │   xmlWriter.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── mtiLib/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── otlLib/
│   │   │   │   │   │   builder.py
│   │   │   │   │   │   error.py
│   │   │   │   │   │   maxContextCalc.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── optimize/
│   │   │   │   │   │   │   gpos.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   gpos.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   builder.cpython-310.pyc
│   │   │   │   │   │   │   error.cpython-310.pyc
│   │   │   │   │   │   │   maxContextCalc.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── pens/
│   │   │   │   │   │   areaPen.py
│   │   │   │   │   │   basePen.py
│   │   │   │   │   │   boundsPen.py
│   │   │   │   │   │   cairoPen.py
│   │   │   │   │   │   cocoaPen.py
│   │   │   │   │   │   cu2quPen.py
│   │   │   │   │   │   explicitClosingLinePen.py
│   │   │   │   │   │   filterPen.py
│   │   │   │   │   │   freetypePen.py
│   │   │   │   │   │   hashPointPen.py
│   │   │   │   │   │   momentsPen.c
│   │   │   │   │   │   momentsPen.cp310-win_amd64.pyd
│   │   │   │   │   │   momentsPen.py
│   │   │   │   │   │   perimeterPen.py
│   │   │   │   │   │   pointInsidePen.py
│   │   │   │   │   │   pointPen.py
│   │   │   │   │   │   qtPen.py
│   │   │   │   │   │   qu2cuPen.py
│   │   │   │   │   │   quartzPen.py
│   │   │   │   │   │   recordingPen.py
│   │   │   │   │   │   reportLabPen.py
│   │   │   │   │   │   reverseContourPen.py
│   │   │   │   │   │   roundingPen.py
│   │   │   │   │   │   statisticsPen.py
│   │   │   │   │   │   svgPathPen.py
│   │   │   │   │   │   t2CharStringPen.py
│   │   │   │   │   │   teePen.py
│   │   │   │   │   │   transformPen.py
│   │   │   │   │   │   ttGlyphPen.py
│   │   │   │   │   │   wxPen.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   areaPen.cpython-310.pyc
│   │   │   │   │   │   │   basePen.cpython-310.pyc
│   │   │   │   │   │   │   boundsPen.cpython-310.pyc
│   │   │   │   │   │   │   cairoPen.cpython-310.pyc
│   │   │   │   │   │   │   cocoaPen.cpython-310.pyc
│   │   │   │   │   │   │   cu2quPen.cpython-310.pyc
│   │   │   │   │   │   │   explicitClosingLinePen.cpython-310.pyc
│   │   │   │   │   │   │   filterPen.cpython-310.pyc
│   │   │   │   │   │   │   freetypePen.cpython-310.pyc
│   │   │   │   │   │   │   hashPointPen.cpython-310.pyc
│   │   │   │   │   │   │   momentsPen.cpython-310.pyc
│   │   │   │   │   │   │   perimeterPen.cpython-310.pyc
│   │   │   │   │   │   │   pointInsidePen.cpython-310.pyc
│   │   │   │   │   │   │   pointPen.cpython-310.pyc
│   │   │   │   │   │   │   qtPen.cpython-310.pyc
│   │   │   │   │   │   │   qu2cuPen.cpython-310.pyc
│   │   │   │   │   │   │   quartzPen.cpython-310.pyc
│   │   │   │   │   │   │   recordingPen.cpython-310.pyc
│   │   │   │   │   │   │   reportLabPen.cpython-310.pyc
│   │   │   │   │   │   │   reverseContourPen.cpython-310.pyc
│   │   │   │   │   │   │   roundingPen.cpython-310.pyc
│   │   │   │   │   │   │   statisticsPen.cpython-310.pyc
│   │   │   │   │   │   │   svgPathPen.cpython-310.pyc
│   │   │   │   │   │   │   t2CharStringPen.cpython-310.pyc
│   │   │   │   │   │   │   teePen.cpython-310.pyc
│   │   │   │   │   │   │   transformPen.cpython-310.pyc
│   │   │   │   │   │   │   ttGlyphPen.cpython-310.pyc
│   │   │   │   │   │   │   wxPen.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── qu2cu/
│   │   │   │   │   │   benchmark.py
│   │   │   │   │   │   cli.py
│   │   │   │   │   │   qu2cu.c
│   │   │   │   │   │   qu2cu.cp310-win_amd64.pyd
│   │   │   │   │   │   qu2cu.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   benchmark.cpython-310.pyc
│   │   │   │   │   │   │   cli.cpython-310.pyc
│   │   │   │   │   │   │   qu2cu.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── subset/
│   │   │   │   │   │   cff.py
│   │   │   │   │   │   svg.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   cff.cpython-310.pyc
│   │   │   │   │   │   │   svg.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── svgLib/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── path/
│   │   │   │   │   │   │   arc.py
│   │   │   │   │   │   │   parser.py
│   │   │   │   │   │   │   shapes.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   arc.cpython-310.pyc
│   │   │   │   │   │   │   │   parser.cpython-310.pyc
│   │   │   │   │   │   │   │   shapes.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── t1Lib/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── ttLib/
│   │   │   │   │   │   macUtils.py
│   │   │   │   │   │   removeOverlaps.py
│   │   │   │   │   │   reorderGlyphs.py
│   │   │   │   │   │   scaleUpem.py
│   │   │   │   │   │   sfnt.py
│   │   │   │   │   │   standardGlyphOrder.py
│   │   │   │   │   │   ttCollection.py
│   │   │   │   │   │   ttFont.py
│   │   │   │   │   │   ttGlyphSet.py
│   │   │   │   │   │   ttVisitor.py
│   │   │   │   │   │   woff2.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── tables/
│   │   │   │   │   │   │   asciiTable.py
│   │   │   │   │   │   │   BitmapGlyphMetrics.py
│   │   │   │   │   │   │   B_A_S_E_.py
│   │   │   │   │   │   │   C_B_D_T_.py
│   │   │   │   │   │   │   C_B_L_C_.py
│   │   │   │   │   │   │   C_F_F_.py
│   │   │   │   │   │   │   C_F_F__2.py
│   │   │   │   │   │   │   C_O_L_R_.py
│   │   │   │   │   │   │   C_P_A_L_.py
│   │   │   │   │   │   │   DefaultTable.py
│   │   │   │   │   │   │   D_S_I_G_.py
│   │   │   │   │   │   │   D__e_b_g.py
│   │   │   │   │   │   │   E_B_D_T_.py
│   │   │   │   │   │   │   E_B_L_C_.py
│   │   │   │   │   │   │   F_F_T_M_.py
│   │   │   │   │   │   │   F__e_a_t.py
│   │   │   │   │   │   │   grUtils.py
│   │   │   │   │   │   │   G_D_E_F_.py
│   │   │   │   │   │   │   G_M_A_P_.py
│   │   │   │   │   │   │   G_P_K_G_.py
│   │   │   │   │   │   │   G_P_O_S_.py
│   │   │   │   │   │   │   G_S_U_B_.py
│   │   │   │   │   │   │   G_V_A_R_.py
│   │   │   │   │   │   │   G__l_a_t.py
│   │   │   │   │   │   │   G__l_o_c.py
│   │   │   │   │   │   │   H_V_A_R_.py
│   │   │   │   │   │   │   J_S_T_F_.py
│   │   │   │   │   │   │   L_T_S_H_.py
│   │   │   │   │   │   │   M_A_T_H_.py
│   │   │   │   │   │   │   M_E_T_A_.py
│   │   │   │   │   │   │   M_V_A_R_.py
│   │   │   │   │   │   │   otBase.py
│   │   │   │   │   │   │   otConverters.py
│   │   │   │   │   │   │   otData.py
│   │   │   │   │   │   │   otTables.py
│   │   │   │   │   │   │   otTraverse.py
│   │   │   │   │   │   │   O_S_2f_2.py
│   │   │   │   │   │   │   sbixGlyph.py
│   │   │   │   │   │   │   sbixStrike.py
│   │   │   │   │   │   │   S_I_N_G_.py
│   │   │   │   │   │   │   S_T_A_T_.py
│   │   │   │   │   │   │   S_V_G_.py
│   │   │   │   │   │   │   S__i_l_f.py
│   │   │   │   │   │   │   S__i_l_l.py
│   │   │   │   │   │   │   table_API_readme.txt
│   │   │   │   │   │   │   ttProgram.py
│   │   │   │   │   │   │   TupleVariation.py
│   │   │   │   │   │   │   T_S_I_B_.py
│   │   │   │   │   │   │   T_S_I_C_.py
│   │   │   │   │   │   │   T_S_I_D_.py
│   │   │   │   │   │   │   T_S_I_J_.py
│   │   │   │   │   │   │   T_S_I_P_.py
│   │   │   │   │   │   │   T_S_I_S_.py
│   │   │   │   │   │   │   T_S_I_V_.py
│   │   │   │   │   │   │   T_S_I__0.py
│   │   │   │   │   │   │   T_S_I__1.py
│   │   │   │   │   │   │   T_S_I__2.py
│   │   │   │   │   │   │   T_S_I__3.py
│   │   │   │   │   │   │   T_S_I__5.py
│   │   │   │   │   │   │   T_T_F_A_.py
│   │   │   │   │   │   │   V_A_R_C_.py
│   │   │   │   │   │   │   V_D_M_X_.py
│   │   │   │   │   │   │   V_O_R_G_.py
│   │   │   │   │   │   │   V_V_A_R_.py
│   │   │   │   │   │   │   _a_n_k_r.py
│   │   │   │   │   │   │   _a_v_a_r.py
│   │   │   │   │   │   │   _b_s_l_n.py
│   │   │   │   │   │   │   _c_i_d_g.py
│   │   │   │   │   │   │   _c_m_a_p.py
│   │   │   │   │   │   │   _c_v_a_r.py
│   │   │   │   │   │   │   _c_v_t.py
│   │   │   │   │   │   │   _f_e_a_t.py
│   │   │   │   │   │   │   _f_p_g_m.py
│   │   │   │   │   │   │   _f_v_a_r.py
│   │   │   │   │   │   │   _g_a_s_p.py
│   │   │   │   │   │   │   _g_c_i_d.py
│   │   │   │   │   │   │   _g_l_y_f.py
│   │   │   │   │   │   │   _g_v_a_r.py
│   │   │   │   │   │   │   _h_d_m_x.py
│   │   │   │   │   │   │   _h_e_a_d.py
│   │   │   │   │   │   │   _h_h_e_a.py
│   │   │   │   │   │   │   _h_m_t_x.py
│   │   │   │   │   │   │   _k_e_r_n.py
│   │   │   │   │   │   │   _l_c_a_r.py
│   │   │   │   │   │   │   _l_o_c_a.py
│   │   │   │   │   │   │   _l_t_a_g.py
│   │   │   │   │   │   │   _m_a_x_p.py
│   │   │   │   │   │   │   _m_e_t_a.py
│   │   │   │   │   │   │   _m_o_r_t.py
│   │   │   │   │   │   │   _m_o_r_x.py
│   │   │   │   │   │   │   _n_a_m_e.py
│   │   │   │   │   │   │   _o_p_b_d.py
│   │   │   │   │   │   │   _p_o_s_t.py
│   │   │   │   │   │   │   _p_r_e_p.py
│   │   │   │   │   │   │   _p_r_o_p.py
│   │   │   │   │   │   │   _s_b_i_x.py
│   │   │   │   │   │   │   _t_r_a_k.py
│   │   │   │   │   │   │   _v_h_e_a.py
│   │   │   │   │   │   │   _v_m_t_x.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   asciiTable.cpython-310.pyc
│   │   │   │   │   │   │   │   BitmapGlyphMetrics.cpython-310.pyc
│   │   │   │   │   │   │   │   B_A_S_E_.cpython-310.pyc
│   │   │   │   │   │   │   │   C_B_D_T_.cpython-310.pyc
│   │   │   │   │   │   │   │   C_B_L_C_.cpython-310.pyc
│   │   │   │   │   │   │   │   C_F_F_.cpython-310.pyc
│   │   │   │   │   │   │   │   C_F_F__2.cpython-310.pyc
│   │   │   │   │   │   │   │   C_O_L_R_.cpython-310.pyc
│   │   │   │   │   │   │   │   C_P_A_L_.cpython-310.pyc
│   │   │   │   │   │   │   │   DefaultTable.cpython-310.pyc
│   │   │   │   │   │   │   │   D_S_I_G_.cpython-310.pyc
│   │   │   │   │   │   │   │   D__e_b_g.cpython-310.pyc
│   │   │   │   │   │   │   │   E_B_D_T_.cpython-310.pyc
│   │   │   │   │   │   │   │   E_B_L_C_.cpython-310.pyc
│   │   │   │   │   │   │   │   F_F_T_M_.cpython-310.pyc
│   │   │   │   │   │   │   │   F__e_a_t.cpython-310.pyc
│   │   │   │   │   │   │   │   grUtils.cpython-310.pyc
│   │   │   │   │   │   │   │   G_D_E_F_.cpython-310.pyc
│   │   │   │   │   │   │   │   G_M_A_P_.cpython-310.pyc
│   │   │   │   │   │   │   │   G_P_K_G_.cpython-310.pyc
│   │   │   │   │   │   │   │   G_P_O_S_.cpython-310.pyc
│   │   │   │   │   │   │   │   G_S_U_B_.cpython-310.pyc
│   │   │   │   │   │   │   │   G_V_A_R_.cpython-310.pyc
│   │   │   │   │   │   │   │   G__l_a_t.cpython-310.pyc
│   │   │   │   │   │   │   │   G__l_o_c.cpython-310.pyc
│   │   │   │   │   │   │   │   H_V_A_R_.cpython-310.pyc
│   │   │   │   │   │   │   │   J_S_T_F_.cpython-310.pyc
│   │   │   │   │   │   │   │   L_T_S_H_.cpython-310.pyc
│   │   │   │   │   │   │   │   M_A_T_H_.cpython-310.pyc
│   │   │   │   │   │   │   │   M_E_T_A_.cpython-310.pyc
│   │   │   │   │   │   │   │   M_V_A_R_.cpython-310.pyc
│   │   │   │   │   │   │   │   otBase.cpython-310.pyc
│   │   │   │   │   │   │   │   otConverters.cpython-310.pyc
│   │   │   │   │   │   │   │   otData.cpython-310.pyc
│   │   │   │   │   │   │   │   otTables.cpython-310.pyc
│   │   │   │   │   │   │   │   otTraverse.cpython-310.pyc
│   │   │   │   │   │   │   │   O_S_2f_2.cpython-310.pyc
│   │   │   │   │   │   │   │   sbixGlyph.cpython-310.pyc
│   │   │   │   │   │   │   │   sbixStrike.cpython-310.pyc
│   │   │   │   │   │   │   │   S_I_N_G_.cpython-310.pyc
│   │   │   │   │   │   │   │   S_T_A_T_.cpython-310.pyc
│   │   │   │   │   │   │   │   S_V_G_.cpython-310.pyc
│   │   │   │   │   │   │   │   S__i_l_f.cpython-310.pyc
│   │   │   │   │   │   │   │   S__i_l_l.cpython-310.pyc
│   │   │   │   │   │   │   │   ttProgram.cpython-310.pyc
│   │   │   │   │   │   │   │   TupleVariation.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I_B_.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I_C_.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I_D_.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I_J_.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I_P_.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I_S_.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I_V_.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I__0.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I__1.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I__2.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I__3.cpython-310.pyc
│   │   │   │   │   │   │   │   T_S_I__5.cpython-310.pyc
│   │   │   │   │   │   │   │   T_T_F_A_.cpython-310.pyc
│   │   │   │   │   │   │   │   V_A_R_C_.cpython-310.pyc
│   │   │   │   │   │   │   │   V_D_M_X_.cpython-310.pyc
│   │   │   │   │   │   │   │   V_O_R_G_.cpython-310.pyc
│   │   │   │   │   │   │   │   V_V_A_R_.cpython-310.pyc
│   │   │   │   │   │   │   │   _a_n_k_r.cpython-310.pyc
│   │   │   │   │   │   │   │   _a_v_a_r.cpython-310.pyc
│   │   │   │   │   │   │   │   _b_s_l_n.cpython-310.pyc
│   │   │   │   │   │   │   │   _c_i_d_g.cpython-310.pyc
│   │   │   │   │   │   │   │   _c_m_a_p.cpython-310.pyc
│   │   │   │   │   │   │   │   _c_v_a_r.cpython-310.pyc
│   │   │   │   │   │   │   │   _c_v_t.cpython-310.pyc
│   │   │   │   │   │   │   │   _f_e_a_t.cpython-310.pyc
│   │   │   │   │   │   │   │   _f_p_g_m.cpython-310.pyc
│   │   │   │   │   │   │   │   _f_v_a_r.cpython-310.pyc
│   │   │   │   │   │   │   │   _g_a_s_p.cpython-310.pyc
│   │   │   │   │   │   │   │   _g_c_i_d.cpython-310.pyc
│   │   │   │   │   │   │   │   _g_l_y_f.cpython-310.pyc
│   │   │   │   │   │   │   │   _g_v_a_r.cpython-310.pyc
│   │   │   │   │   │   │   │   _h_d_m_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _h_e_a_d.cpython-310.pyc
│   │   │   │   │   │   │   │   _h_h_e_a.cpython-310.pyc
│   │   │   │   │   │   │   │   _h_m_t_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _k_e_r_n.cpython-310.pyc
│   │   │   │   │   │   │   │   _l_c_a_r.cpython-310.pyc
│   │   │   │   │   │   │   │   _l_o_c_a.cpython-310.pyc
│   │   │   │   │   │   │   │   _l_t_a_g.cpython-310.pyc
│   │   │   │   │   │   │   │   _m_a_x_p.cpython-310.pyc
│   │   │   │   │   │   │   │   _m_e_t_a.cpython-310.pyc
│   │   │   │   │   │   │   │   _m_o_r_t.cpython-310.pyc
│   │   │   │   │   │   │   │   _m_o_r_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _n_a_m_e.cpython-310.pyc
│   │   │   │   │   │   │   │   _o_p_b_d.cpython-310.pyc
│   │   │   │   │   │   │   │   _p_o_s_t.cpython-310.pyc
│   │   │   │   │   │   │   │   _p_r_e_p.cpython-310.pyc
│   │   │   │   │   │   │   │   _p_r_o_p.cpython-310.pyc
│   │   │   │   │   │   │   │   _s_b_i_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _t_r_a_k.cpython-310.pyc
│   │   │   │   │   │   │   │   _v_h_e_a.cpython-310.pyc
│   │   │   │   │   │   │   │   _v_m_t_x.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   macUtils.cpython-310.pyc
│   │   │   │   │   │   │   removeOverlaps.cpython-310.pyc
│   │   │   │   │   │   │   reorderGlyphs.cpython-310.pyc
│   │   │   │   │   │   │   scaleUpem.cpython-310.pyc
│   │   │   │   │   │   │   sfnt.cpython-310.pyc
│   │   │   │   │   │   │   standardGlyphOrder.cpython-310.pyc
│   │   │   │   │   │   │   ttCollection.cpython-310.pyc
│   │   │   │   │   │   │   ttFont.cpython-310.pyc
│   │   │   │   │   │   │   ttGlyphSet.cpython-310.pyc
│   │   │   │   │   │   │   ttVisitor.cpython-310.pyc
│   │   │   │   │   │   │   woff2.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── ufoLib/
│   │   │   │   │   │   converters.py
│   │   │   │   │   │   errors.py
│   │   │   │   │   │   etree.py
│   │   │   │   │   │   filenames.py
│   │   │   │   │   │   glifLib.py
│   │   │   │   │   │   kerning.py
│   │   │   │   │   │   plistlib.py
│   │   │   │   │   │   pointPen.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   validators.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   converters.cpython-310.pyc
│   │   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   │   etree.cpython-310.pyc
│   │   │   │   │   │   │   filenames.cpython-310.pyc
│   │   │   │   │   │   │   glifLib.cpython-310.pyc
│   │   │   │   │   │   │   kerning.cpython-310.pyc
│   │   │   │   │   │   │   plistlib.cpython-310.pyc
│   │   │   │   │   │   │   pointPen.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   validators.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── unicodedata/
│   │   │   │   │   │   Blocks.py
│   │   │   │   │   │   Mirrored.py
│   │   │   │   │   │   OTTags.py
│   │   │   │   │   │   ScriptExtensions.py
│   │   │   │   │   │   Scripts.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   Blocks.cpython-310.pyc
│   │   │   │   │   │   │   Mirrored.cpython-310.pyc
│   │   │   │   │   │   │   OTTags.cpython-310.pyc
│   │   │   │   │   │   │   ScriptExtensions.cpython-310.pyc
│   │   │   │   │   │   │   Scripts.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── varLib/
│   │   │   │   │   │   avarPlanner.py
│   │   │   │   │   │   builder.py
│   │   │   │   │   │   cff.py
│   │   │   │   │   │   errors.py
│   │   │   │   │   │   featureVars.py
│   │   │   │   │   │   hvar.py
│   │   │   │   │   │   interpolatable.py
│   │   │   │   │   │   interpolatableHelpers.py
│   │   │   │   │   │   interpolatablePlot.py
│   │   │   │   │   │   interpolatableTestContourOrder.py
│   │   │   │   │   │   interpolatableTestStartingPoint.py
│   │   │   │   │   │   interpolate_layout.py
│   │   │   │   │   │   iup.c
│   │   │   │   │   │   iup.cp310-win_amd64.pyd
│   │   │   │   │   │   iup.py
│   │   │   │   │   │   merger.py
│   │   │   │   │   │   models.py
│   │   │   │   │   │   multiVarStore.py
│   │   │   │   │   │   mutator.py
│   │   │   │   │   │   mvar.py
│   │   │   │   │   │   plot.py
│   │   │   │   │   │   stat.py
│   │   │   │   │   │   varStore.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── avar/
│   │   │   │   │   │   │   build.py
│   │   │   │   │   │   │   map.py
│   │   │   │   │   │   │   plan.py
│   │   │   │   │   │   │   unbuild.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   build.cpython-310.pyc
│   │   │   │   │   │   │   │   map.cpython-310.pyc
│   │   │   │   │   │   │   │   plan.cpython-310.pyc
│   │   │   │   │   │   │   │   unbuild.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── instancer/
│   │   │   │   │   │   │   featureVars.py
│   │   │   │   │   │   │   names.py
│   │   │   │   │   │   │   solver.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   featureVars.cpython-310.pyc
│   │   │   │   │   │   │   │   names.cpython-310.pyc
│   │   │   │   │   │   │   │   solver.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   avarPlanner.cpython-310.pyc
│   │   │   │   │   │   │   builder.cpython-310.pyc
│   │   │   │   │   │   │   cff.cpython-310.pyc
│   │   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   │   featureVars.cpython-310.pyc
│   │   │   │   │   │   │   hvar.cpython-310.pyc
│   │   │   │   │   │   │   interpolatable.cpython-310.pyc
│   │   │   │   │   │   │   interpolatableHelpers.cpython-310.pyc
│   │   │   │   │   │   │   interpolatablePlot.cpython-310.pyc
│   │   │   │   │   │   │   interpolatableTestContourOrder.cpython-310.pyc
│   │   │   │   │   │   │   interpolatableTestStartingPoint.cpython-310.pyc
│   │   │   │   │   │   │   interpolate_layout.cpython-310.pyc
│   │   │   │   │   │   │   iup.cpython-310.pyc
│   │   │   │   │   │   │   merger.cpython-310.pyc
│   │   │   │   │   │   │   models.cpython-310.pyc
│   │   │   │   │   │   │   multiVarStore.cpython-310.pyc
│   │   │   │   │   │   │   mutator.cpython-310.pyc
│   │   │   │   │   │   │   mvar.cpython-310.pyc
│   │   │   │   │   │   │   plot.cpython-310.pyc
│   │   │   │   │   │   │   stat.cpython-310.pyc
│   │   │   │   │   │   │   varStore.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── voltLib/
│   │   │   │   │   │   ast.py
│   │   │   │   │   │   error.py
│   │   │   │   │   │   lexer.py
│   │   │   │   │   │   parser.py
│   │   │   │   │   │   voltToFea.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   ast.cpython-310.pyc
│   │   │   │   │   │   │   error.cpython-310.pyc
│   │   │   │   │   │   │   lexer.cpython-310.pyc
│   │   │   │   │   │   │   parser.cpython-310.pyc
│   │   │   │   │   │   │   voltToFea.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   afmLib.cpython-310.pyc
│   │   │   │   │   │   agl.cpython-310.pyc
│   │   │   │   │   │   annotations.cpython-310.pyc
│   │   │   │   │   │   fontBuilder.cpython-310.pyc
│   │   │   │   │   │   help.cpython-310.pyc
│   │   │   │   │   │   tfmLib.cpython-310.pyc
│   │   │   │   │   │   ttx.cpython-310.pyc
│   │   │   │   │   │   unicode.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   ├── fonttools-4.60.1.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   │   │   LICENSE.external
│   │   │   │   ├── git/
│   │   │   │   │   cmd.py
│   │   │   │   │   compat.py
│   │   │   │   │   config.py
│   │   │   │   │   db.py
│   │   │   │   │   diff.py
│   │   │   │   │   exc.py
│   │   │   │   │   py.typed
│   │   │   │   │   remote.py
│   │   │   │   │   types.py
│   │   │   │   │   util.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── index/
│   │   │   │   │   │   base.py
│   │   │   │   │   │   fun.py
│   │   │   │   │   │   typ.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   fun.cpython-310.pyc
│   │   │   │   │   │   │   typ.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── objects/
│   │   │   │   │   │   base.py
│   │   │   │   │   │   blob.py
│   │   │   │   │   │   commit.py
│   │   │   │   │   │   fun.py
│   │   │   │   │   │   tag.py
│   │   │   │   │   │   tree.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── submodule/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   root.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   root.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   blob.cpython-310.pyc
│   │   │   │   │   │   │   commit.cpython-310.pyc
│   │   │   │   │   │   │   fun.cpython-310.pyc
│   │   │   │   │   │   │   tag.cpython-310.pyc
│   │   │   │   │   │   │   tree.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── refs/
│   │   │   │   │   │   head.py
│   │   │   │   │   │   log.py
│   │   │   │   │   │   reference.py
│   │   │   │   │   │   remote.py
│   │   │   │   │   │   symbolic.py
│   │   │   │   │   │   tag.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   head.cpython-310.pyc
│   │   │   │   │   │   │   log.cpython-310.pyc
│   │   │   │   │   │   │   reference.cpython-310.pyc
│   │   │   │   │   │   │   remote.cpython-310.pyc
│   │   │   │   │   │   │   symbolic.cpython-310.pyc
│   │   │   │   │   │   │   tag.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── repo/
│   │   │   │   │   │   base.py
│   │   │   │   │   │   fun.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   fun.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   cmd.cpython-310.pyc
│   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   config.cpython-310.pyc
│   │   │   │   │   │   db.cpython-310.pyc
│   │   │   │   │   │   diff.cpython-310.pyc
│   │   │   │   │   │   exc.cpython-310.pyc
│   │   │   │   │   │   remote.cpython-310.pyc
│   │   │   │   │   │   types.cpython-310.pyc
│   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── gitdb/
│   │   │   │   │   base.py
│   │   │   │   │   const.py
│   │   │   │   │   exc.py
│   │   │   │   │   fun.py
│   │   │   │   │   pack.py
│   │   │   │   │   stream.py
│   │   │   │   │   typ.py
│   │   │   │   │   util.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── db/
│   │   │   │   │   │   base.py
│   │   │   │   │   │   git.py
│   │   │   │   │   │   loose.py
│   │   │   │   │   │   mem.py
│   │   │   │   │   │   pack.py
│   │   │   │   │   │   ref.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   git.cpython-310.pyc
│   │   │   │   │   │   │   loose.cpython-310.pyc
│   │   │   │   │   │   │   mem.cpython-310.pyc
│   │   │   │   │   │   │   pack.cpython-310.pyc
│   │   │   │   │   │   │   ref.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── test/
│   │   │   │   │   │   lib.py
│   │   │   │   │   │   test_base.py
│   │   │   │   │   │   test_example.py
│   │   │   │   │   │   test_pack.py
│   │   │   │   │   │   test_stream.py
│   │   │   │   │   │   test_util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   lib.cpython-310.pyc
│   │   │   │   │   │   │   test_base.cpython-310.pyc
│   │   │   │   │   │   │   test_example.cpython-310.pyc
│   │   │   │   │   │   │   test_pack.cpython-310.pyc
│   │   │   │   │   │   │   test_stream.cpython-310.pyc
│   │   │   │   │   │   │   test_util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── utils/
│   │   │   │   │   │   encoding.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   encoding.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   const.cpython-310.pyc
│   │   │   │   │   │   exc.cpython-310.pyc
│   │   │   │   │   │   fun.cpython-310.pyc
│   │   │   │   │   │   pack.cpython-310.pyc
│   │   │   │   │   │   stream.cpython-310.pyc
│   │   │   │   │   │   typ.cpython-310.pyc
│   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── gitdb-4.0.12.dist-info/
│   │   │   │   │   AUTHORS
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── gitpython-3.1.45.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   AUTHORS
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── google/
│   │   │   │   │   ├── protobuf/
│   │   │   │   │   │   any.py
│   │   │   │   │   │   any_pb2.py
│   │   │   │   │   │   api_pb2.py
│   │   │   │   │   │   descriptor.py
│   │   │   │   │   │   descriptor_database.py
│   │   │   │   │   │   descriptor_pb2.py
│   │   │   │   │   │   descriptor_pool.py
│   │   │   │   │   │   duration.py
│   │   │   │   │   │   duration_pb2.py
│   │   │   │   │   │   empty_pb2.py
│   │   │   │   │   │   field_mask_pb2.py
│   │   │   │   │   │   json_format.py
│   │   │   │   │   │   message.py
│   │   │   │   │   │   message_factory.py
│   │   │   │   │   │   proto.py
│   │   │   │   │   │   proto_builder.py
│   │   │   │   │   │   proto_json.py
│   │   │   │   │   │   proto_text.py
│   │   │   │   │   │   reflection.py
│   │   │   │   │   │   runtime_version.py
│   │   │   │   │   │   service_reflection.py
│   │   │   │   │   │   source_context_pb2.py
│   │   │   │   │   │   struct_pb2.py
│   │   │   │   │   │   symbol_database.py
│   │   │   │   │   │   text_encoding.py
│   │   │   │   │   │   text_format.py
│   │   │   │   │   │   timestamp.py
│   │   │   │   │   │   timestamp_pb2.py
│   │   │   │   │   │   type_pb2.py
│   │   │   │   │   │   unknown_fields.py
│   │   │   │   │   │   wrappers_pb2.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── compiler/
│   │   │   │   │   │   │   plugin_pb2.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   plugin_pb2.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── internal/
│   │   │   │   │   │   │   api_implementation.py
│   │   │   │   │   │   │   builder.py
│   │   │   │   │   │   │   containers.py
│   │   │   │   │   │   │   decoder.py
│   │   │   │   │   │   │   encoder.py
│   │   │   │   │   │   │   enum_type_wrapper.py
│   │   │   │   │   │   │   extension_dict.py
│   │   │   │   │   │   │   field_mask.py
│   │   │   │   │   │   │   message_listener.py
│   │   │   │   │   │   │   python_edition_defaults.py
│   │   │   │   │   │   │   python_message.py
│   │   │   │   │   │   │   testing_refleaks.py
│   │   │   │   │   │   │   type_checkers.py
│   │   │   │   │   │   │   well_known_types.py
│   │   │   │   │   │   │   wire_format.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   api_implementation.cpython-310.pyc
│   │   │   │   │   │   │   │   builder.cpython-310.pyc
│   │   │   │   │   │   │   │   containers.cpython-310.pyc
│   │   │   │   │   │   │   │   decoder.cpython-310.pyc
│   │   │   │   │   │   │   │   encoder.cpython-310.pyc
│   │   │   │   │   │   │   │   enum_type_wrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   extension_dict.cpython-310.pyc
│   │   │   │   │   │   │   │   field_mask.cpython-310.pyc
│   │   │   │   │   │   │   │   message_listener.cpython-310.pyc
│   │   │   │   │   │   │   │   python_edition_defaults.cpython-310.pyc
│   │   │   │   │   │   │   │   python_message.cpython-310.pyc
│   │   │   │   │   │   │   │   testing_refleaks.cpython-310.pyc
│   │   │   │   │   │   │   │   type_checkers.cpython-310.pyc
│   │   │   │   │   │   │   │   well_known_types.cpython-310.pyc
│   │   │   │   │   │   │   │   wire_format.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── pyext/
│   │   │   │   │   │   │   cpp_message.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   cpp_message.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── testdata/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── util/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   any.cpython-310.pyc
│   │   │   │   │   │   │   any_pb2.cpython-310.pyc
│   │   │   │   │   │   │   api_pb2.cpython-310.pyc
│   │   │   │   │   │   │   descriptor.cpython-310.pyc
│   │   │   │   │   │   │   descriptor_database.cpython-310.pyc
│   │   │   │   │   │   │   descriptor_pb2.cpython-310.pyc
│   │   │   │   │   │   │   descriptor_pool.cpython-310.pyc
│   │   │   │   │   │   │   duration.cpython-310.pyc
│   │   │   │   │   │   │   duration_pb2.cpython-310.pyc
│   │   │   │   │   │   │   empty_pb2.cpython-310.pyc
│   │   │   │   │   │   │   field_mask_pb2.cpython-310.pyc
│   │   │   │   │   │   │   json_format.cpython-310.pyc
│   │   │   │   │   │   │   message.cpython-310.pyc
│   │   │   │   │   │   │   message_factory.cpython-310.pyc
│   │   │   │   │   │   │   proto.cpython-310.pyc
│   │   │   │   │   │   │   proto_builder.cpython-310.pyc
│   │   │   │   │   │   │   proto_json.cpython-310.pyc
│   │   │   │   │   │   │   proto_text.cpython-310.pyc
│   │   │   │   │   │   │   reflection.cpython-310.pyc
│   │   │   │   │   │   │   runtime_version.cpython-310.pyc
│   │   │   │   │   │   │   service_reflection.cpython-310.pyc
│   │   │   │   │   │   │   source_context_pb2.cpython-310.pyc
│   │   │   │   │   │   │   struct_pb2.cpython-310.pyc
│   │   │   │   │   │   │   symbol_database.cpython-310.pyc
│   │   │   │   │   │   │   text_encoding.cpython-310.pyc
│   │   │   │   │   │   │   text_format.cpython-310.pyc
│   │   │   │   │   │   │   timestamp.cpython-310.pyc
│   │   │   │   │   │   │   timestamp_pb2.cpython-310.pyc
│   │   │   │   │   │   │   type_pb2.cpython-310.pyc
│   │   │   │   │   │   │   unknown_fields.cpython-310.pyc
│   │   │   │   │   │   │   wrappers_pb2.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _upb/
│   │   │   │   │   │   _message.pyd
│   │   │   │   ├── idna/
│   │   │   │   │   codec.py
│   │   │   │   │   compat.py
│   │   │   │   │   core.py
│   │   │   │   │   idnadata.py
│   │   │   │   │   intranges.py
│   │   │   │   │   package_data.py
│   │   │   │   │   py.typed
│   │   │   │   │   uts46data.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   codec.cpython-310.pyc
│   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   idnadata.cpython-310.pyc
│   │   │   │   │   │   intranges.cpython-310.pyc
│   │   │   │   │   │   package_data.cpython-310.pyc
│   │   │   │   │   │   uts46data.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── idna-3.11.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.md
│   │   │   │   ├── jinja2/
│   │   │   │   │   async_utils.py
│   │   │   │   │   bccache.py
│   │   │   │   │   compiler.py
│   │   │   │   │   constants.py
│   │   │   │   │   debug.py
│   │   │   │   │   defaults.py
│   │   │   │   │   environment.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   ext.py
│   │   │   │   │   filters.py
│   │   │   │   │   idtracking.py
│   │   │   │   │   lexer.py
│   │   │   │   │   loaders.py
│   │   │   │   │   meta.py
│   │   │   │   │   nativetypes.py
│   │   │   │   │   nodes.py
│   │   │   │   │   optimizer.py
│   │   │   │   │   parser.py
│   │   │   │   │   py.typed
│   │   │   │   │   runtime.py
│   │   │   │   │   sandbox.py
│   │   │   │   │   tests.py
│   │   │   │   │   utils.py
│   │   │   │   │   visitor.py
│   │   │   │   │   _identifier.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   async_utils.cpython-310.pyc
│   │   │   │   │   │   bccache.cpython-310.pyc
│   │   │   │   │   │   compiler.cpython-310.pyc
│   │   │   │   │   │   constants.cpython-310.pyc
│   │   │   │   │   │   debug.cpython-310.pyc
│   │   │   │   │   │   defaults.cpython-310.pyc
│   │   │   │   │   │   environment.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   ext.cpython-310.pyc
│   │   │   │   │   │   filters.cpython-310.pyc
│   │   │   │   │   │   idtracking.cpython-310.pyc
│   │   │   │   │   │   lexer.cpython-310.pyc
│   │   │   │   │   │   loaders.cpython-310.pyc
│   │   │   │   │   │   meta.cpython-310.pyc
│   │   │   │   │   │   nativetypes.cpython-310.pyc
│   │   │   │   │   │   nodes.cpython-310.pyc
│   │   │   │   │   │   optimizer.cpython-310.pyc
│   │   │   │   │   │   parser.cpython-310.pyc
│   │   │   │   │   │   runtime.cpython-310.pyc
│   │   │   │   │   │   sandbox.cpython-310.pyc
│   │   │   │   │   │   tests.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   visitor.cpython-310.pyc
│   │   │   │   │   │   _identifier.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── jinja2-3.1.6.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.txt
│   │   │   │   ├── jsonschema/
│   │   │   │   │   cli.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   protocols.py
│   │   │   │   │   validators.py
│   │   │   │   │   _format.py
│   │   │   │   │   _keywords.py
│   │   │   │   │   _legacy_keywords.py
│   │   │   │   │   _types.py
│   │   │   │   │   _typing.py
│   │   │   │   │   _utils.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __main__.py
│   │   │   │   │   ├── benchmarks/
│   │   │   │   │   │   const_vs_enum.py
│   │   │   │   │   │   contains.py
│   │   │   │   │   │   issue232.py
│   │   │   │   │   │   json_schema_test_suite.py
│   │   │   │   │   │   nested_schemas.py
│   │   │   │   │   │   subcomponents.py
│   │   │   │   │   │   unused_registry.py
│   │   │   │   │   │   useless_applicator_schemas.py
│   │   │   │   │   │   useless_keywords.py
│   │   │   │   │   │   validator_creation.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── issue232/
│   │   │   │   │   │   │   issue.json
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   const_vs_enum.cpython-310.pyc
│   │   │   │   │   │   │   contains.cpython-310.pyc
│   │   │   │   │   │   │   issue232.cpython-310.pyc
│   │   │   │   │   │   │   json_schema_test_suite.cpython-310.pyc
│   │   │   │   │   │   │   nested_schemas.cpython-310.pyc
│   │   │   │   │   │   │   subcomponents.cpython-310.pyc
│   │   │   │   │   │   │   unused_registry.cpython-310.pyc
│   │   │   │   │   │   │   useless_applicator_schemas.cpython-310.pyc
│   │   │   │   │   │   │   useless_keywords.cpython-310.pyc
│   │   │   │   │   │   │   validator_creation.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   fuzz_validate.py
│   │   │   │   │   │   test_cli.py
│   │   │   │   │   │   test_deprecations.py
│   │   │   │   │   │   test_exceptions.py
│   │   │   │   │   │   test_format.py
│   │   │   │   │   │   test_jsonschema_test_suite.py
│   │   │   │   │   │   test_types.py
│   │   │   │   │   │   test_utils.py
│   │   │   │   │   │   test_validators.py
│   │   │   │   │   │   _suite.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── typing/
│   │   │   │   │   │   │   test_all_concrete_validators_match_protocol.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_all_concrete_validators_match_protocol.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   fuzz_validate.cpython-310.pyc
│   │   │   │   │   │   │   test_cli.cpython-310.pyc
│   │   │   │   │   │   │   test_deprecations.cpython-310.pyc
│   │   │   │   │   │   │   test_exceptions.cpython-310.pyc
│   │   │   │   │   │   │   test_format.cpython-310.pyc
│   │   │   │   │   │   │   test_jsonschema_test_suite.cpython-310.pyc
│   │   │   │   │   │   │   test_types.cpython-310.pyc
│   │   │   │   │   │   │   test_utils.cpython-310.pyc
│   │   │   │   │   │   │   test_validators.cpython-310.pyc
│   │   │   │   │   │   │   _suite.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   cli.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   protocols.cpython-310.pyc
│   │   │   │   │   │   validators.cpython-310.pyc
│   │   │   │   │   │   _format.cpython-310.pyc
│   │   │   │   │   │   _keywords.cpython-310.pyc
│   │   │   │   │   │   _legacy_keywords.cpython-310.pyc
│   │   │   │   │   │   _types.cpython-310.pyc
│   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   ├── jsonschema-4.25.1.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   COPYING
│   │   │   │   ├── jsonschema_specifications/
│   │   │   │   │   _core.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── schemas/
│   │   │   │   │   │   ├── draft201909/
│   │   │   │   │   │   │   metaschema.json
│   │   │   │   │   │   │   ├── vocabularies/
│   │   │   │   │   │   │   │   applicator
│   │   │   │   │   │   │   │   content
│   │   │   │   │   │   │   │   core
│   │   │   │   │   │   │   │   format
│   │   │   │   │   │   │   │   meta-data
│   │   │   │   │   │   │   │   validation
│   │   │   │   │   │   ├── draft202012/
│   │   │   │   │   │   │   metaschema.json
│   │   │   │   │   │   │   ├── vocabularies/
│   │   │   │   │   │   │   │   applicator
│   │   │   │   │   │   │   │   content
│   │   │   │   │   │   │   │   core
│   │   │   │   │   │   │   │   format-annotation
│   │   │   │   │   │   │   │   format-assertion
│   │   │   │   │   │   │   │   meta-data
│   │   │   │   │   │   │   │   unevaluated
│   │   │   │   │   │   │   │   validation
│   │   │   │   │   │   ├── draft3/
│   │   │   │   │   │   │   metaschema.json
│   │   │   │   │   │   ├── draft4/
│   │   │   │   │   │   │   metaschema.json
│   │   │   │   │   │   ├── draft6/
│   │   │   │   │   │   │   metaschema.json
│   │   │   │   │   │   ├── draft7/
│   │   │   │   │   │   │   metaschema.json
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   test_jsonschema_specifications.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   test_jsonschema_specifications.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   _core.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── jsonschema_specifications-2025.9.1.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   COPYING
│   │   │   │   ├── kiwisolver/
│   │   │   │   │   exceptions.py
│   │   │   │   │   py.typed
│   │   │   │   │   _cext.cp310-win_amd64.pyd
│   │   │   │   │   _cext.pyi
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── kiwisolver-1.4.9.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── markupsafe/
│   │   │   │   │   py.typed
│   │   │   │   │   _native.py
│   │   │   │   │   _speedups.c
│   │   │   │   │   _speedups.cp310-win_amd64.pyd
│   │   │   │   │   _speedups.pyi
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   _native.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── markupsafe-3.0.3.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.txt
│   │   │   │   ├── matplotlib/
│   │   │   │   │   animation.py
│   │   │   │   │   animation.pyi
│   │   │   │   │   artist.py
│   │   │   │   │   artist.pyi
│   │   │   │   │   axis.py
│   │   │   │   │   axis.pyi
│   │   │   │   │   backend_bases.py
│   │   │   │   │   backend_bases.pyi
│   │   │   │   │   backend_managers.py
│   │   │   │   │   backend_managers.pyi
│   │   │   │   │   backend_tools.py
│   │   │   │   │   backend_tools.pyi
│   │   │   │   │   bezier.py
│   │   │   │   │   bezier.pyi
│   │   │   │   │   category.py
│   │   │   │   │   cbook.py
│   │   │   │   │   cbook.pyi
│   │   │   │   │   cm.py
│   │   │   │   │   cm.pyi
│   │   │   │   │   collections.py
│   │   │   │   │   collections.pyi
│   │   │   │   │   colorbar.py
│   │   │   │   │   colorbar.pyi
│   │   │   │   │   colorizer.py
│   │   │   │   │   colorizer.pyi
│   │   │   │   │   colors.py
│   │   │   │   │   colors.pyi
│   │   │   │   │   container.py
│   │   │   │   │   container.pyi
│   │   │   │   │   contour.py
│   │   │   │   │   contour.pyi
│   │   │   │   │   dates.py
│   │   │   │   │   dviread.py
│   │   │   │   │   dviread.pyi
│   │   │   │   │   figure.py
│   │   │   │   │   figure.pyi
│   │   │   │   │   font_manager.py
│   │   │   │   │   font_manager.pyi
│   │   │   │   │   ft2font.cp310-win_amd64.pyd
│   │   │   │   │   ft2font.pyi
│   │   │   │   │   gridspec.py
│   │   │   │   │   gridspec.pyi
│   │   │   │   │   hatch.py
│   │   │   │   │   hatch.pyi
│   │   │   │   │   image.py
│   │   │   │   │   image.pyi
│   │   │   │   │   inset.py
│   │   │   │   │   inset.pyi
│   │   │   │   │   layout_engine.py
│   │   │   │   │   layout_engine.pyi
│   │   │   │   │   legend.py
│   │   │   │   │   legend.pyi
│   │   │   │   │   legend_handler.py
│   │   │   │   │   legend_handler.pyi
│   │   │   │   │   lines.py
│   │   │   │   │   lines.pyi
│   │   │   │   │   markers.py
│   │   │   │   │   markers.pyi
│   │   │   │   │   mathtext.py
│   │   │   │   │   mathtext.pyi
│   │   │   │   │   mlab.py
│   │   │   │   │   mlab.pyi
│   │   │   │   │   offsetbox.py
│   │   │   │   │   offsetbox.pyi
│   │   │   │   │   patches.py
│   │   │   │   │   patches.pyi
│   │   │   │   │   path.py
│   │   │   │   │   path.pyi
│   │   │   │   │   patheffects.py
│   │   │   │   │   patheffects.pyi
│   │   │   │   │   py.typed
│   │   │   │   │   pylab.py
│   │   │   │   │   pyplot.py
│   │   │   │   │   quiver.py
│   │   │   │   │   quiver.pyi
│   │   │   │   │   rcsetup.py
│   │   │   │   │   rcsetup.pyi
│   │   │   │   │   sankey.py
│   │   │   │   │   sankey.pyi
│   │   │   │   │   scale.py
│   │   │   │   │   scale.pyi
│   │   │   │   │   spines.py
│   │   │   │   │   spines.pyi
│   │   │   │   │   stackplot.py
│   │   │   │   │   stackplot.pyi
│   │   │   │   │   streamplot.py
│   │   │   │   │   streamplot.pyi
│   │   │   │   │   table.py
│   │   │   │   │   table.pyi
│   │   │   │   │   texmanager.py
│   │   │   │   │   texmanager.pyi
│   │   │   │   │   text.py
│   │   │   │   │   text.pyi
│   │   │   │   │   textpath.py
│   │   │   │   │   textpath.pyi
│   │   │   │   │   ticker.py
│   │   │   │   │   ticker.pyi
│   │   │   │   │   transforms.py
│   │   │   │   │   transforms.pyi
│   │   │   │   │   typing.py
│   │   │   │   │   units.py
│   │   │   │   │   widgets.py
│   │   │   │   │   widgets.pyi
│   │   │   │   │   _afm.py
│   │   │   │   │   _animation_data.py
│   │   │   │   │   _blocking_input.py
│   │   │   │   │   _cm.py
│   │   │   │   │   _cm_bivar.py
│   │   │   │   │   _cm_listed.py
│   │   │   │   │   _cm_multivar.py
│   │   │   │   │   _color_data.py
│   │   │   │   │   _color_data.pyi
│   │   │   │   │   _constrained_layout.py
│   │   │   │   │   _c_internal_utils.cp310-win_amd64.pyd
│   │   │   │   │   _c_internal_utils.pyi
│   │   │   │   │   _docstring.py
│   │   │   │   │   _docstring.pyi
│   │   │   │   │   _enums.py
│   │   │   │   │   _enums.pyi
│   │   │   │   │   _fontconfig_pattern.py
│   │   │   │   │   _image.cp310-win_amd64.pyd
│   │   │   │   │   _image.pyi
│   │   │   │   │   _internal_utils.py
│   │   │   │   │   _layoutgrid.py
│   │   │   │   │   _mathtext.py
│   │   │   │   │   _mathtext_data.py
│   │   │   │   │   _path.cp310-win_amd64.pyd
│   │   │   │   │   _path.pyi
│   │   │   │   │   _pylab_helpers.py
│   │   │   │   │   _pylab_helpers.pyi
│   │   │   │   │   _qhull.cp310-win_amd64.pyd
│   │   │   │   │   _qhull.pyi
│   │   │   │   │   _text_helpers.py
│   │   │   │   │   _tight_bbox.py
│   │   │   │   │   _tight_layout.py
│   │   │   │   │   _tri.cp310-win_amd64.pyd
│   │   │   │   │   _tri.pyi
│   │   │   │   │   _type1font.py
│   │   │   │   │   _version.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __init__.pyi
│   │   │   │   │   ├── axes/
│   │   │   │   │   │   _axes.py
│   │   │   │   │   │   _axes.pyi
│   │   │   │   │   │   _base.py
│   │   │   │   │   │   _base.pyi
│   │   │   │   │   │   _secondary_axes.py
│   │   │   │   │   │   _secondary_axes.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _axes.cpython-310.pyc
│   │   │   │   │   │   │   _base.cpython-310.pyc
│   │   │   │   │   │   │   _secondary_axes.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── backends/
│   │   │   │   │   │   backend_agg.py
│   │   │   │   │   │   backend_cairo.py
│   │   │   │   │   │   backend_gtk3.py
│   │   │   │   │   │   backend_gtk3agg.py
│   │   │   │   │   │   backend_gtk3cairo.py
│   │   │   │   │   │   backend_gtk4.py
│   │   │   │   │   │   backend_gtk4agg.py
│   │   │   │   │   │   backend_gtk4cairo.py
│   │   │   │   │   │   backend_macosx.py
│   │   │   │   │   │   backend_mixed.py
│   │   │   │   │   │   backend_nbagg.py
│   │   │   │   │   │   backend_pdf.py
│   │   │   │   │   │   backend_pgf.py
│   │   │   │   │   │   backend_ps.py
│   │   │   │   │   │   backend_qt.py
│   │   │   │   │   │   backend_qt5.py
│   │   │   │   │   │   backend_qt5agg.py
│   │   │   │   │   │   backend_qt5cairo.py
│   │   │   │   │   │   backend_qtagg.py
│   │   │   │   │   │   backend_qtcairo.py
│   │   │   │   │   │   backend_svg.py
│   │   │   │   │   │   backend_template.py
│   │   │   │   │   │   backend_tkagg.py
│   │   │   │   │   │   backend_tkcairo.py
│   │   │   │   │   │   backend_webagg.py
│   │   │   │   │   │   backend_webagg_core.py
│   │   │   │   │   │   backend_wx.py
│   │   │   │   │   │   backend_wxagg.py
│   │   │   │   │   │   backend_wxcairo.py
│   │   │   │   │   │   qt_compat.py
│   │   │   │   │   │   registry.py
│   │   │   │   │   │   _backend_agg.cp310-win_amd64.pyd
│   │   │   │   │   │   _backend_agg.pyi
│   │   │   │   │   │   _backend_gtk.py
│   │   │   │   │   │   _backend_pdf_ps.py
│   │   │   │   │   │   _backend_tk.py
│   │   │   │   │   │   _macosx.pyi
│   │   │   │   │   │   _tkagg.cp310-win_amd64.pyd
│   │   │   │   │   │   _tkagg.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── qt_editor/
│   │   │   │   │   │   │   figureoptions.py
│   │   │   │   │   │   │   _formlayout.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   figureoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   _formlayout.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── web_backend/
│   │   │   │   │   │   │   all_figures.html
│   │   │   │   │   │   │   ipython_inline_figure.html
│   │   │   │   │   │   │   single_figure.html
│   │   │   │   │   │   │   ├── css/
│   │   │   │   │   │   │   │   boilerplate.css
│   │   │   │   │   │   │   │   fbm.css
│   │   │   │   │   │   │   │   mpl.css
│   │   │   │   │   │   │   │   page.css
│   │   │   │   │   │   │   ├── js/
│   │   │   │   │   │   │   │   mpl.js
│   │   │   │   │   │   │   │   mpl_tornado.js
│   │   │   │   │   │   │   │   nbagg_mpl.js
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   backend_agg.cpython-310.pyc
│   │   │   │   │   │   │   backend_cairo.cpython-310.pyc
│   │   │   │   │   │   │   backend_gtk3.cpython-310.pyc
│   │   │   │   │   │   │   backend_gtk3agg.cpython-310.pyc
│   │   │   │   │   │   │   backend_gtk3cairo.cpython-310.pyc
│   │   │   │   │   │   │   backend_gtk4.cpython-310.pyc
│   │   │   │   │   │   │   backend_gtk4agg.cpython-310.pyc
│   │   │   │   │   │   │   backend_gtk4cairo.cpython-310.pyc
│   │   │   │   │   │   │   backend_macosx.cpython-310.pyc
│   │   │   │   │   │   │   backend_mixed.cpython-310.pyc
│   │   │   │   │   │   │   backend_nbagg.cpython-310.pyc
│   │   │   │   │   │   │   backend_pdf.cpython-310.pyc
│   │   │   │   │   │   │   backend_pgf.cpython-310.pyc
│   │   │   │   │   │   │   backend_ps.cpython-310.pyc
│   │   │   │   │   │   │   backend_qt.cpython-310.pyc
│   │   │   │   │   │   │   backend_qt5.cpython-310.pyc
│   │   │   │   │   │   │   backend_qt5agg.cpython-310.pyc
│   │   │   │   │   │   │   backend_qt5cairo.cpython-310.pyc
│   │   │   │   │   │   │   backend_qtagg.cpython-310.pyc
│   │   │   │   │   │   │   backend_qtcairo.cpython-310.pyc
│   │   │   │   │   │   │   backend_svg.cpython-310.pyc
│   │   │   │   │   │   │   backend_template.cpython-310.pyc
│   │   │   │   │   │   │   backend_tkagg.cpython-310.pyc
│   │   │   │   │   │   │   backend_tkcairo.cpython-310.pyc
│   │   │   │   │   │   │   backend_webagg.cpython-310.pyc
│   │   │   │   │   │   │   backend_webagg_core.cpython-310.pyc
│   │   │   │   │   │   │   backend_wx.cpython-310.pyc
│   │   │   │   │   │   │   backend_wxagg.cpython-310.pyc
│   │   │   │   │   │   │   backend_wxcairo.cpython-310.pyc
│   │   │   │   │   │   │   qt_compat.cpython-310.pyc
│   │   │   │   │   │   │   registry.cpython-310.pyc
│   │   │   │   │   │   │   _backend_gtk.cpython-310.pyc
│   │   │   │   │   │   │   _backend_pdf_ps.cpython-310.pyc
│   │   │   │   │   │   │   _backend_tk.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── mpl-data/
│   │   │   │   │   │   kpsewhich.lua
│   │   │   │   │   │   matplotlibrc
│   │   │   │   │   │   ├── fonts/
│   │   │   │   │   │   │   ├── afm/
│   │   │   │   │   │   │   │   cmex10.afm
│   │   │   │   │   │   │   │   cmmi10.afm
│   │   │   │   │   │   │   │   cmr10.afm
│   │   │   │   │   │   │   │   cmsy10.afm
│   │   │   │   │   │   │   │   cmtt10.afm
│   │   │   │   │   │   │   │   pagd8a.afm
│   │   │   │   │   │   │   │   pagdo8a.afm
│   │   │   │   │   │   │   │   pagk8a.afm
│   │   │   │   │   │   │   │   pagko8a.afm
│   │   │   │   │   │   │   │   pbkd8a.afm
│   │   │   │   │   │   │   │   pbkdi8a.afm
│   │   │   │   │   │   │   │   pbkl8a.afm
│   │   │   │   │   │   │   │   pbkli8a.afm
│   │   │   │   │   │   │   │   pcrb8a.afm
│   │   │   │   │   │   │   │   pcrbo8a.afm
│   │   │   │   │   │   │   │   pcrr8a.afm
│   │   │   │   │   │   │   │   pcrro8a.afm
│   │   │   │   │   │   │   │   phvb8a.afm
│   │   │   │   │   │   │   │   phvb8an.afm
│   │   │   │   │   │   │   │   phvbo8a.afm
│   │   │   │   │   │   │   │   phvbo8an.afm
│   │   │   │   │   │   │   │   phvl8a.afm
│   │   │   │   │   │   │   │   phvlo8a.afm
│   │   │   │   │   │   │   │   phvr8a.afm
│   │   │   │   │   │   │   │   phvr8an.afm
│   │   │   │   │   │   │   │   phvro8a.afm
│   │   │   │   │   │   │   │   phvro8an.afm
│   │   │   │   │   │   │   │   pncb8a.afm
│   │   │   │   │   │   │   │   pncbi8a.afm
│   │   │   │   │   │   │   │   pncr8a.afm
│   │   │   │   │   │   │   │   pncri8a.afm
│   │   │   │   │   │   │   │   pplb8a.afm
│   │   │   │   │   │   │   │   pplbi8a.afm
│   │   │   │   │   │   │   │   pplr8a.afm
│   │   │   │   │   │   │   │   pplri8a.afm
│   │   │   │   │   │   │   │   psyr.afm
│   │   │   │   │   │   │   │   ptmb8a.afm
│   │   │   │   │   │   │   │   ptmbi8a.afm
│   │   │   │   │   │   │   │   ptmr8a.afm
│   │   │   │   │   │   │   │   ptmri8a.afm
│   │   │   │   │   │   │   │   putb8a.afm
│   │   │   │   │   │   │   │   putbi8a.afm
│   │   │   │   │   │   │   │   putr8a.afm
│   │   │   │   │   │   │   │   putri8a.afm
│   │   │   │   │   │   │   │   pzcmi8a.afm
│   │   │   │   │   │   │   │   pzdr.afm
│   │   │   │   │   │   │   ├── pdfcorefonts/
│   │   │   │   │   │   │   │   Courier-Bold.afm
│   │   │   │   │   │   │   │   Courier-BoldOblique.afm
│   │   │   │   │   │   │   │   Courier-Oblique.afm
│   │   │   │   │   │   │   │   Courier.afm
│   │   │   │   │   │   │   │   Helvetica-Bold.afm
│   │   │   │   │   │   │   │   Helvetica-BoldOblique.afm
│   │   │   │   │   │   │   │   Helvetica-Oblique.afm
│   │   │   │   │   │   │   │   Helvetica.afm
│   │   │   │   │   │   │   │   readme.txt
│   │   │   │   │   │   │   │   Symbol.afm
│   │   │   │   │   │   │   │   Times-Bold.afm
│   │   │   │   │   │   │   │   Times-BoldItalic.afm
│   │   │   │   │   │   │   │   Times-Italic.afm
│   │   │   │   │   │   │   │   Times-Roman.afm
│   │   │   │   │   │   │   │   ZapfDingbats.afm
│   │   │   │   │   │   │   ├── ttf/
│   │   │   │   │   │   │   │   cmb10.ttf
│   │   │   │   │   │   │   │   cmex10.ttf
│   │   │   │   │   │   │   │   cmmi10.ttf
│   │   │   │   │   │   │   │   cmr10.ttf
│   │   │   │   │   │   │   │   cmss10.ttf
│   │   │   │   │   │   │   │   cmsy10.ttf
│   │   │   │   │   │   │   │   cmtt10.ttf
│   │   │   │   │   │   │   │   DejaVuSans-Bold.ttf
│   │   │   │   │   │   │   │   DejaVuSans-BoldOblique.ttf
│   │   │   │   │   │   │   │   DejaVuSans-Oblique.ttf
│   │   │   │   │   │   │   │   DejaVuSans.ttf
│   │   │   │   │   │   │   │   DejaVuSansDisplay.ttf
│   │   │   │   │   │   │   │   DejaVuSansMono-Bold.ttf
│   │   │   │   │   │   │   │   DejaVuSansMono-BoldOblique.ttf
│   │   │   │   │   │   │   │   DejaVuSansMono-Oblique.ttf
│   │   │   │   │   │   │   │   DejaVuSansMono.ttf
│   │   │   │   │   │   │   │   DejaVuSerif-Bold.ttf
│   │   │   │   │   │   │   │   DejaVuSerif-BoldItalic.ttf
│   │   │   │   │   │   │   │   DejaVuSerif-Italic.ttf
│   │   │   │   │   │   │   │   DejaVuSerif.ttf
│   │   │   │   │   │   │   │   DejaVuSerifDisplay.ttf
│   │   │   │   │   │   │   │   LICENSE_DEJAVU
│   │   │   │   │   │   │   │   LICENSE_STIX
│   │   │   │   │   │   │   │   STIXGeneral.ttf
│   │   │   │   │   │   │   │   STIXGeneralBol.ttf
│   │   │   │   │   │   │   │   STIXGeneralBolIta.ttf
│   │   │   │   │   │   │   │   STIXGeneralItalic.ttf
│   │   │   │   │   │   │   │   STIXNonUni.ttf
│   │   │   │   │   │   │   │   STIXNonUniBol.ttf
│   │   │   │   │   │   │   │   STIXNonUniBolIta.ttf
│   │   │   │   │   │   │   │   STIXNonUniIta.ttf
│   │   │   │   │   │   │   │   STIXSizFiveSymReg.ttf
│   │   │   │   │   │   │   │   STIXSizFourSymBol.ttf
│   │   │   │   │   │   │   │   STIXSizFourSymReg.ttf
│   │   │   │   │   │   │   │   STIXSizOneSymBol.ttf
│   │   │   │   │   │   │   │   STIXSizOneSymReg.ttf
│   │   │   │   │   │   │   │   STIXSizThreeSymBol.ttf
│   │   │   │   │   │   │   │   STIXSizThreeSymReg.ttf
│   │   │   │   │   │   │   │   STIXSizTwoSymBol.ttf
│   │   │   │   │   │   │   │   STIXSizTwoSymReg.ttf
│   │   │   │   │   │   ├── images/
│   │   │   │   │   │   │   back-symbolic.svg
│   │   │   │   │   │   │   back.pdf
│   │   │   │   │   │   │   back.png
│   │   │   │   │   │   │   back.svg
│   │   │   │   │   │   │   back_large.png
│   │   │   │   │   │   │   filesave-symbolic.svg
│   │   │   │   │   │   │   filesave.pdf
│   │   │   │   │   │   │   filesave.png
│   │   │   │   │   │   │   filesave.svg
│   │   │   │   │   │   │   filesave_large.png
│   │   │   │   │   │   │   forward-symbolic.svg
│   │   │   │   │   │   │   forward.pdf
│   │   │   │   │   │   │   forward.png
│   │   │   │   │   │   │   forward.svg
│   │   │   │   │   │   │   forward_large.png
│   │   │   │   │   │   │   hand.pdf
│   │   │   │   │   │   │   hand.png
│   │   │   │   │   │   │   hand.svg
│   │   │   │   │   │   │   help-symbolic.svg
│   │   │   │   │   │   │   help.pdf
│   │   │   │   │   │   │   help.png
│   │   │   │   │   │   │   help.svg
│   │   │   │   │   │   │   help_large.png
│   │   │   │   │   │   │   home-symbolic.svg
│   │   │   │   │   │   │   home.pdf
│   │   │   │   │   │   │   home.png
│   │   │   │   │   │   │   home.svg
│   │   │   │   │   │   │   home_large.png
│   │   │   │   │   │   │   matplotlib.pdf
│   │   │   │   │   │   │   matplotlib.png
│   │   │   │   │   │   │   matplotlib.svg
│   │   │   │   │   │   │   matplotlib_large.png
│   │   │   │   │   │   │   move-symbolic.svg
│   │   │   │   │   │   │   move.pdf
│   │   │   │   │   │   │   move.png
│   │   │   │   │   │   │   move.svg
│   │   │   │   │   │   │   move_large.png
│   │   │   │   │   │   │   qt4_editor_options.pdf
│   │   │   │   │   │   │   qt4_editor_options.png
│   │   │   │   │   │   │   qt4_editor_options.svg
│   │   │   │   │   │   │   qt4_editor_options_large.png
│   │   │   │   │   │   │   subplots-symbolic.svg
│   │   │   │   │   │   │   subplots.pdf
│   │   │   │   │   │   │   subplots.png
│   │   │   │   │   │   │   subplots.svg
│   │   │   │   │   │   │   subplots_large.png
│   │   │   │   │   │   │   zoom_to_rect-symbolic.svg
│   │   │   │   │   │   │   zoom_to_rect.pdf
│   │   │   │   │   │   │   zoom_to_rect.png
│   │   │   │   │   │   │   zoom_to_rect.svg
│   │   │   │   │   │   │   zoom_to_rect_large.png
│   │   │   │   │   │   ├── plot_directive/
│   │   │   │   │   │   │   plot_directive.css
│   │   │   │   │   │   ├── sample_data/
│   │   │   │   │   │   │   data_x_x2_x3.csv
│   │   │   │   │   │   │   eeg.dat
│   │   │   │   │   │   │   embedding_in_wx3.xrc
│   │   │   │   │   │   │   goog.npz
│   │   │   │   │   │   │   grace_hopper.jpg
│   │   │   │   │   │   │   jacksboro_fault_dem.npz
│   │   │   │   │   │   │   logo2.png
│   │   │   │   │   │   │   membrane.dat
│   │   │   │   │   │   │   Minduka_Present_Blue_Pack.png
│   │   │   │   │   │   │   msft.csv
│   │   │   │   │   │   │   README.txt
│   │   │   │   │   │   │   s1045.ima.gz
│   │   │   │   │   │   │   Stocks.csv
│   │   │   │   │   │   │   topobathy.npz
│   │   │   │   │   │   │   ├── axes_grid/
│   │   │   │   │   │   │   │   bivariate_normal.npy
│   │   │   │   │   │   ├── stylelib/
│   │   │   │   │   │   │   bmh.mplstyle
│   │   │   │   │   │   │   classic.mplstyle
│   │   │   │   │   │   │   dark_background.mplstyle
│   │   │   │   │   │   │   fast.mplstyle
│   │   │   │   │   │   │   fivethirtyeight.mplstyle
│   │   │   │   │   │   │   ggplot.mplstyle
│   │   │   │   │   │   │   grayscale.mplstyle
│   │   │   │   │   │   │   petroff10.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-bright.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-colorblind.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-dark-palette.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-dark.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-darkgrid.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-deep.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-muted.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-notebook.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-paper.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-pastel.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-poster.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-talk.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-ticks.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-white.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8-whitegrid.mplstyle
│   │   │   │   │   │   │   seaborn-v0_8.mplstyle
│   │   │   │   │   │   │   Solarize_Light2.mplstyle
│   │   │   │   │   │   │   tableau-colorblind10.mplstyle
│   │   │   │   │   │   │   _classic_test_patch.mplstyle
│   │   │   │   │   │   │   _mpl-gallery-nogrid.mplstyle
│   │   │   │   │   │   │   _mpl-gallery.mplstyle
│   │   │   │   │   ├── projections/
│   │   │   │   │   │   geo.py
│   │   │   │   │   │   geo.pyi
│   │   │   │   │   │   polar.py
│   │   │   │   │   │   polar.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   geo.cpython-310.pyc
│   │   │   │   │   │   │   polar.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── sphinxext/
│   │   │   │   │   │   figmpl_directive.py
│   │   │   │   │   │   mathmpl.py
│   │   │   │   │   │   plot_directive.py
│   │   │   │   │   │   roles.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   figmpl_directive.cpython-310.pyc
│   │   │   │   │   │   │   mathmpl.cpython-310.pyc
│   │   │   │   │   │   │   plot_directive.cpython-310.pyc
│   │   │   │   │   │   │   roles.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── style/
│   │   │   │   │   │   core.py
│   │   │   │   │   │   core.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── testing/
│   │   │   │   │   │   compare.py
│   │   │   │   │   │   compare.pyi
│   │   │   │   │   │   conftest.py
│   │   │   │   │   │   conftest.pyi
│   │   │   │   │   │   decorators.py
│   │   │   │   │   │   decorators.pyi
│   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   widgets.py
│   │   │   │   │   │   widgets.pyi
│   │   │   │   │   │   _markers.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── jpl_units/
│   │   │   │   │   │   │   Duration.py
│   │   │   │   │   │   │   Epoch.py
│   │   │   │   │   │   │   EpochConverter.py
│   │   │   │   │   │   │   StrConverter.py
│   │   │   │   │   │   │   UnitDbl.py
│   │   │   │   │   │   │   UnitDblConverter.py
│   │   │   │   │   │   │   UnitDblFormatter.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   Duration.cpython-310.pyc
│   │   │   │   │   │   │   │   Epoch.cpython-310.pyc
│   │   │   │   │   │   │   │   EpochConverter.cpython-310.pyc
│   │   │   │   │   │   │   │   StrConverter.cpython-310.pyc
│   │   │   │   │   │   │   │   UnitDbl.cpython-310.pyc
│   │   │   │   │   │   │   │   UnitDblConverter.cpython-310.pyc
│   │   │   │   │   │   │   │   UnitDblFormatter.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   compare.cpython-310.pyc
│   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   decorators.cpython-310.pyc
│   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   widgets.cpython-310.pyc
│   │   │   │   │   │   │   _markers.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   conftest.py
│   │   │   │   │   │   test_afm.py
│   │   │   │   │   │   test_agg.py
│   │   │   │   │   │   test_agg_filter.py
│   │   │   │   │   │   test_animation.py
│   │   │   │   │   │   test_api.py
│   │   │   │   │   │   test_arrow_patches.py
│   │   │   │   │   │   test_artist.py
│   │   │   │   │   │   test_axes.py
│   │   │   │   │   │   test_axis.py
│   │   │   │   │   │   test_backends_interactive.py
│   │   │   │   │   │   test_backend_bases.py
│   │   │   │   │   │   test_backend_cairo.py
│   │   │   │   │   │   test_backend_gtk3.py
│   │   │   │   │   │   test_backend_inline.py
│   │   │   │   │   │   test_backend_macosx.py
│   │   │   │   │   │   test_backend_nbagg.py
│   │   │   │   │   │   test_backend_pdf.py
│   │   │   │   │   │   test_backend_pgf.py
│   │   │   │   │   │   test_backend_ps.py
│   │   │   │   │   │   test_backend_qt.py
│   │   │   │   │   │   test_backend_registry.py
│   │   │   │   │   │   test_backend_svg.py
│   │   │   │   │   │   test_backend_template.py
│   │   │   │   │   │   test_backend_tk.py
│   │   │   │   │   │   test_backend_tools.py
│   │   │   │   │   │   test_backend_webagg.py
│   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   test_bbox_tight.py
│   │   │   │   │   │   test_bezier.py
│   │   │   │   │   │   test_category.py
│   │   │   │   │   │   test_cbook.py
│   │   │   │   │   │   test_collections.py
│   │   │   │   │   │   test_colorbar.py
│   │   │   │   │   │   test_colors.py
│   │   │   │   │   │   test_compare_images.py
│   │   │   │   │   │   test_constrainedlayout.py
│   │   │   │   │   │   test_container.py
│   │   │   │   │   │   test_contour.py
│   │   │   │   │   │   test_cycles.py
│   │   │   │   │   │   test_dates.py
│   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   test_determinism.py
│   │   │   │   │   │   test_doc.py
│   │   │   │   │   │   test_dviread.py
│   │   │   │   │   │   test_figure.py
│   │   │   │   │   │   test_fontconfig_pattern.py
│   │   │   │   │   │   test_font_manager.py
│   │   │   │   │   │   test_ft2font.py
│   │   │   │   │   │   test_getattr.py
│   │   │   │   │   │   test_gridspec.py
│   │   │   │   │   │   test_image.py
│   │   │   │   │   │   test_legend.py
│   │   │   │   │   │   test_lines.py
│   │   │   │   │   │   test_marker.py
│   │   │   │   │   │   test_mathtext.py
│   │   │   │   │   │   test_matplotlib.py
│   │   │   │   │   │   test_mlab.py
│   │   │   │   │   │   test_multivariate_colormaps.py
│   │   │   │   │   │   test_offsetbox.py
│   │   │   │   │   │   test_patches.py
│   │   │   │   │   │   test_path.py
│   │   │   │   │   │   test_patheffects.py
│   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   test_png.py
│   │   │   │   │   │   test_polar.py
│   │   │   │   │   │   test_preprocess_data.py
│   │   │   │   │   │   test_pyplot.py
│   │   │   │   │   │   test_quiver.py
│   │   │   │   │   │   test_rcparams.py
│   │   │   │   │   │   test_sankey.py
│   │   │   │   │   │   test_scale.py
│   │   │   │   │   │   test_simplification.py
│   │   │   │   │   │   test_skew.py
│   │   │   │   │   │   test_sphinxext.py
│   │   │   │   │   │   test_spines.py
│   │   │   │   │   │   test_streamplot.py
│   │   │   │   │   │   test_style.py
│   │   │   │   │   │   test_subplots.py
│   │   │   │   │   │   test_table.py
│   │   │   │   │   │   test_testing.py
│   │   │   │   │   │   test_texmanager.py
│   │   │   │   │   │   test_text.py
│   │   │   │   │   │   test_textpath.py
│   │   │   │   │   │   test_ticker.py
│   │   │   │   │   │   test_tightlayout.py
│   │   │   │   │   │   test_transforms.py
│   │   │   │   │   │   test_triangulation.py
│   │   │   │   │   │   test_type1font.py
│   │   │   │   │   │   test_units.py
│   │   │   │   │   │   test_usetex.py
│   │   │   │   │   │   test_widgets.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   test_afm.cpython-310.pyc
│   │   │   │   │   │   │   test_agg.cpython-310.pyc
│   │   │   │   │   │   │   test_agg_filter.cpython-310.pyc
│   │   │   │   │   │   │   test_animation.cpython-310.pyc
│   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   test_arrow_patches.cpython-310.pyc
│   │   │   │   │   │   │   test_artist.cpython-310.pyc
│   │   │   │   │   │   │   test_axes.cpython-310.pyc
│   │   │   │   │   │   │   test_axis.cpython-310.pyc
│   │   │   │   │   │   │   test_backends_interactive.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_bases.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_cairo.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_gtk3.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_inline.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_macosx.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_nbagg.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_pdf.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_pgf.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_ps.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_qt.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_registry.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_svg.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_template.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_tk.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_tools.cpython-310.pyc
│   │   │   │   │   │   │   test_backend_webagg.cpython-310.pyc
│   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   test_bbox_tight.cpython-310.pyc
│   │   │   │   │   │   │   test_bezier.cpython-310.pyc
│   │   │   │   │   │   │   test_category.cpython-310.pyc
│   │   │   │   │   │   │   test_cbook.cpython-310.pyc
│   │   │   │   │   │   │   test_collections.cpython-310.pyc
│   │   │   │   │   │   │   test_colorbar.cpython-310.pyc
│   │   │   │   │   │   │   test_colors.cpython-310.pyc
│   │   │   │   │   │   │   test_compare_images.cpython-310.pyc
│   │   │   │   │   │   │   test_constrainedlayout.cpython-310.pyc
│   │   │   │   │   │   │   test_container.cpython-310.pyc
│   │   │   │   │   │   │   test_contour.cpython-310.pyc
│   │   │   │   │   │   │   test_cycles.cpython-310.pyc
│   │   │   │   │   │   │   test_dates.cpython-310.pyc
│   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   test_determinism.cpython-310.pyc
│   │   │   │   │   │   │   test_doc.cpython-310.pyc
│   │   │   │   │   │   │   test_dviread.cpython-310.pyc
│   │   │   │   │   │   │   test_figure.cpython-310.pyc
│   │   │   │   │   │   │   test_fontconfig_pattern.cpython-310.pyc
│   │   │   │   │   │   │   test_font_manager.cpython-310.pyc
│   │   │   │   │   │   │   test_ft2font.cpython-310.pyc
│   │   │   │   │   │   │   test_getattr.cpython-310.pyc
│   │   │   │   │   │   │   test_gridspec.cpython-310.pyc
│   │   │   │   │   │   │   test_image.cpython-310.pyc
│   │   │   │   │   │   │   test_legend.cpython-310.pyc
│   │   │   │   │   │   │   test_lines.cpython-310.pyc
│   │   │   │   │   │   │   test_marker.cpython-310.pyc
│   │   │   │   │   │   │   test_mathtext.cpython-310.pyc
│   │   │   │   │   │   │   test_matplotlib.cpython-310.pyc
│   │   │   │   │   │   │   test_mlab.cpython-310.pyc
│   │   │   │   │   │   │   test_multivariate_colormaps.cpython-310.pyc
│   │   │   │   │   │   │   test_offsetbox.cpython-310.pyc
│   │   │   │   │   │   │   test_patches.cpython-310.pyc
│   │   │   │   │   │   │   test_path.cpython-310.pyc
│   │   │   │   │   │   │   test_patheffects.cpython-310.pyc
│   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   test_png.cpython-310.pyc
│   │   │   │   │   │   │   test_polar.cpython-310.pyc
│   │   │   │   │   │   │   test_preprocess_data.cpython-310.pyc
│   │   │   │   │   │   │   test_pyplot.cpython-310.pyc
│   │   │   │   │   │   │   test_quiver.cpython-310.pyc
│   │   │   │   │   │   │   test_rcparams.cpython-310.pyc
│   │   │   │   │   │   │   test_sankey.cpython-310.pyc
│   │   │   │   │   │   │   test_scale.cpython-310.pyc
│   │   │   │   │   │   │   test_simplification.cpython-310.pyc
│   │   │   │   │   │   │   test_skew.cpython-310.pyc
│   │   │   │   │   │   │   test_sphinxext.cpython-310.pyc
│   │   │   │   │   │   │   test_spines.cpython-310.pyc
│   │   │   │   │   │   │   test_streamplot.cpython-310.pyc
│   │   │   │   │   │   │   test_style.cpython-310.pyc
│   │   │   │   │   │   │   test_subplots.cpython-310.pyc
│   │   │   │   │   │   │   test_table.cpython-310.pyc
│   │   │   │   │   │   │   test_testing.cpython-310.pyc
│   │   │   │   │   │   │   test_texmanager.cpython-310.pyc
│   │   │   │   │   │   │   test_text.cpython-310.pyc
│   │   │   │   │   │   │   test_textpath.cpython-310.pyc
│   │   │   │   │   │   │   test_ticker.cpython-310.pyc
│   │   │   │   │   │   │   test_tightlayout.cpython-310.pyc
│   │   │   │   │   │   │   test_transforms.cpython-310.pyc
│   │   │   │   │   │   │   test_triangulation.cpython-310.pyc
│   │   │   │   │   │   │   test_type1font.cpython-310.pyc
│   │   │   │   │   │   │   test_units.cpython-310.pyc
│   │   │   │   │   │   │   test_usetex.cpython-310.pyc
│   │   │   │   │   │   │   test_widgets.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tri/
│   │   │   │   │   │   _triangulation.py
│   │   │   │   │   │   _triangulation.pyi
│   │   │   │   │   │   _tricontour.py
│   │   │   │   │   │   _tricontour.pyi
│   │   │   │   │   │   _trifinder.py
│   │   │   │   │   │   _trifinder.pyi
│   │   │   │   │   │   _triinterpolate.py
│   │   │   │   │   │   _triinterpolate.pyi
│   │   │   │   │   │   _tripcolor.py
│   │   │   │   │   │   _tripcolor.pyi
│   │   │   │   │   │   _triplot.py
│   │   │   │   │   │   _triplot.pyi
│   │   │   │   │   │   _trirefine.py
│   │   │   │   │   │   _trirefine.pyi
│   │   │   │   │   │   _tritools.py
│   │   │   │   │   │   _tritools.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _triangulation.cpython-310.pyc
│   │   │   │   │   │   │   _tricontour.cpython-310.pyc
│   │   │   │   │   │   │   _trifinder.cpython-310.pyc
│   │   │   │   │   │   │   _triinterpolate.cpython-310.pyc
│   │   │   │   │   │   │   _tripcolor.cpython-310.pyc
│   │   │   │   │   │   │   _triplot.cpython-310.pyc
│   │   │   │   │   │   │   _trirefine.cpython-310.pyc
│   │   │   │   │   │   │   _tritools.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _api/
│   │   │   │   │   │   deprecation.py
│   │   │   │   │   │   deprecation.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   deprecation.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   animation.cpython-310.pyc
│   │   │   │   │   │   artist.cpython-310.pyc
│   │   │   │   │   │   axis.cpython-310.pyc
│   │   │   │   │   │   backend_bases.cpython-310.pyc
│   │   │   │   │   │   backend_managers.cpython-310.pyc
│   │   │   │   │   │   backend_tools.cpython-310.pyc
│   │   │   │   │   │   bezier.cpython-310.pyc
│   │   │   │   │   │   category.cpython-310.pyc
│   │   │   │   │   │   cbook.cpython-310.pyc
│   │   │   │   │   │   cm.cpython-310.pyc
│   │   │   │   │   │   collections.cpython-310.pyc
│   │   │   │   │   │   colorbar.cpython-310.pyc
│   │   │   │   │   │   colorizer.cpython-310.pyc
│   │   │   │   │   │   colors.cpython-310.pyc
│   │   │   │   │   │   container.cpython-310.pyc
│   │   │   │   │   │   contour.cpython-310.pyc
│   │   │   │   │   │   dates.cpython-310.pyc
│   │   │   │   │   │   dviread.cpython-310.pyc
│   │   │   │   │   │   figure.cpython-310.pyc
│   │   │   │   │   │   font_manager.cpython-310.pyc
│   │   │   │   │   │   gridspec.cpython-310.pyc
│   │   │   │   │   │   hatch.cpython-310.pyc
│   │   │   │   │   │   image.cpython-310.pyc
│   │   │   │   │   │   inset.cpython-310.pyc
│   │   │   │   │   │   layout_engine.cpython-310.pyc
│   │   │   │   │   │   legend.cpython-310.pyc
│   │   │   │   │   │   legend_handler.cpython-310.pyc
│   │   │   │   │   │   lines.cpython-310.pyc
│   │   │   │   │   │   markers.cpython-310.pyc
│   │   │   │   │   │   mathtext.cpython-310.pyc
│   │   │   │   │   │   mlab.cpython-310.pyc
│   │   │   │   │   │   offsetbox.cpython-310.pyc
│   │   │   │   │   │   patches.cpython-310.pyc
│   │   │   │   │   │   path.cpython-310.pyc
│   │   │   │   │   │   patheffects.cpython-310.pyc
│   │   │   │   │   │   pylab.cpython-310.pyc
│   │   │   │   │   │   pyplot.cpython-310.pyc
│   │   │   │   │   │   quiver.cpython-310.pyc
│   │   │   │   │   │   rcsetup.cpython-310.pyc
│   │   │   │   │   │   sankey.cpython-310.pyc
│   │   │   │   │   │   scale.cpython-310.pyc
│   │   │   │   │   │   spines.cpython-310.pyc
│   │   │   │   │   │   stackplot.cpython-310.pyc
│   │   │   │   │   │   streamplot.cpython-310.pyc
│   │   │   │   │   │   table.cpython-310.pyc
│   │   │   │   │   │   texmanager.cpython-310.pyc
│   │   │   │   │   │   text.cpython-310.pyc
│   │   │   │   │   │   textpath.cpython-310.pyc
│   │   │   │   │   │   ticker.cpython-310.pyc
│   │   │   │   │   │   transforms.cpython-310.pyc
│   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   units.cpython-310.pyc
│   │   │   │   │   │   widgets.cpython-310.pyc
│   │   │   │   │   │   _afm.cpython-310.pyc
│   │   │   │   │   │   _animation_data.cpython-310.pyc
│   │   │   │   │   │   _blocking_input.cpython-310.pyc
│   │   │   │   │   │   _cm.cpython-310.pyc
│   │   │   │   │   │   _cm_bivar.cpython-310.pyc
│   │   │   │   │   │   _cm_listed.cpython-310.pyc
│   │   │   │   │   │   _cm_multivar.cpython-310.pyc
│   │   │   │   │   │   _color_data.cpython-310.pyc
│   │   │   │   │   │   _constrained_layout.cpython-310.pyc
│   │   │   │   │   │   _docstring.cpython-310.pyc
│   │   │   │   │   │   _enums.cpython-310.pyc
│   │   │   │   │   │   _fontconfig_pattern.cpython-310.pyc
│   │   │   │   │   │   _internal_utils.cpython-310.pyc
│   │   │   │   │   │   _layoutgrid.cpython-310.pyc
│   │   │   │   │   │   _mathtext.cpython-310.pyc
│   │   │   │   │   │   _mathtext_data.cpython-310.pyc
│   │   │   │   │   │   _pylab_helpers.cpython-310.pyc
│   │   │   │   │   │   _text_helpers.cpython-310.pyc
│   │   │   │   │   │   _tight_bbox.cpython-310.pyc
│   │   │   │   │   │   _tight_layout.cpython-310.pyc
│   │   │   │   │   │   _type1font.cpython-310.pyc
│   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── matplotlib-3.10.7.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   WHEEL
│   │   │   │   ├── mpl_toolkits/
│   │   │   │   │   ├── axes_grid1/
│   │   │   │   │   │   anchored_artists.py
│   │   │   │   │   │   axes_divider.py
│   │   │   │   │   │   axes_grid.py
│   │   │   │   │   │   axes_rgb.py
│   │   │   │   │   │   axes_size.py
│   │   │   │   │   │   inset_locator.py
│   │   │   │   │   │   mpl_axes.py
│   │   │   │   │   │   parasite_axes.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_axes_grid1.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_axes_grid1.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   anchored_artists.cpython-310.pyc
│   │   │   │   │   │   │   axes_divider.cpython-310.pyc
│   │   │   │   │   │   │   axes_grid.cpython-310.pyc
│   │   │   │   │   │   │   axes_rgb.cpython-310.pyc
│   │   │   │   │   │   │   axes_size.cpython-310.pyc
│   │   │   │   │   │   │   inset_locator.cpython-310.pyc
│   │   │   │   │   │   │   mpl_axes.cpython-310.pyc
│   │   │   │   │   │   │   parasite_axes.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── axisartist/
│   │   │   │   │   │   angle_helper.py
│   │   │   │   │   │   axes_divider.py
│   │   │   │   │   │   axislines.py
│   │   │   │   │   │   axisline_style.py
│   │   │   │   │   │   axis_artist.py
│   │   │   │   │   │   floating_axes.py
│   │   │   │   │   │   grid_finder.py
│   │   │   │   │   │   grid_helper_curvelinear.py
│   │   │   │   │   │   parasite_axes.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_angle_helper.py
│   │   │   │   │   │   │   test_axislines.py
│   │   │   │   │   │   │   test_axis_artist.py
│   │   │   │   │   │   │   test_floating_axes.py
│   │   │   │   │   │   │   test_grid_finder.py
│   │   │   │   │   │   │   test_grid_helper_curvelinear.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_angle_helper.cpython-310.pyc
│   │   │   │   │   │   │   │   test_axislines.cpython-310.pyc
│   │   │   │   │   │   │   │   test_axis_artist.cpython-310.pyc
│   │   │   │   │   │   │   │   test_floating_axes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_grid_finder.cpython-310.pyc
│   │   │   │   │   │   │   │   test_grid_helper_curvelinear.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   angle_helper.cpython-310.pyc
│   │   │   │   │   │   │   axes_divider.cpython-310.pyc
│   │   │   │   │   │   │   axislines.cpython-310.pyc
│   │   │   │   │   │   │   axisline_style.cpython-310.pyc
│   │   │   │   │   │   │   axis_artist.cpython-310.pyc
│   │   │   │   │   │   │   floating_axes.cpython-310.pyc
│   │   │   │   │   │   │   grid_finder.cpython-310.pyc
│   │   │   │   │   │   │   grid_helper_curvelinear.cpython-310.pyc
│   │   │   │   │   │   │   parasite_axes.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── mplot3d/
│   │   │   │   │   │   art3d.py
│   │   │   │   │   │   axes3d.py
│   │   │   │   │   │   axis3d.py
│   │   │   │   │   │   proj3d.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_art3d.py
│   │   │   │   │   │   │   test_axes3d.py
│   │   │   │   │   │   │   test_legend3d.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_art3d.cpython-310.pyc
│   │   │   │   │   │   │   │   test_axes3d.cpython-310.pyc
│   │   │   │   │   │   │   │   test_legend3d.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   art3d.cpython-310.pyc
│   │   │   │   │   │   │   axes3d.cpython-310.pyc
│   │   │   │   │   │   │   axis3d.cpython-310.pyc
│   │   │   │   │   │   │   proj3d.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── narwhals/
│   │   │   │   │   dataframe.py
│   │   │   │   │   dependencies.py
│   │   │   │   │   dtypes.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   expr.py
│   │   │   │   │   expr_cat.py
│   │   │   │   │   expr_dt.py
│   │   │   │   │   expr_list.py
│   │   │   │   │   expr_name.py
│   │   │   │   │   expr_str.py
│   │   │   │   │   expr_struct.py
│   │   │   │   │   functions.py
│   │   │   │   │   group_by.py
│   │   │   │   │   plugins.py
│   │   │   │   │   py.typed
│   │   │   │   │   schema.py
│   │   │   │   │   selectors.py
│   │   │   │   │   series.py
│   │   │   │   │   series_cat.py
│   │   │   │   │   series_dt.py
│   │   │   │   │   series_list.py
│   │   │   │   │   series_str.py
│   │   │   │   │   series_struct.py
│   │   │   │   │   this.py
│   │   │   │   │   translate.py
│   │   │   │   │   typing.py
│   │   │   │   │   utils.py
│   │   │   │   │   _constants.py
│   │   │   │   │   _duration.py
│   │   │   │   │   _enum.py
│   │   │   │   │   _exceptions.py
│   │   │   │   │   _expression_parsing.py
│   │   │   │   │   _namespace.py
│   │   │   │   │   _native.py
│   │   │   │   │   _translate.py
│   │   │   │   │   _typing.py
│   │   │   │   │   _typing_compat.py
│   │   │   │   │   _utils.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── stable/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── v1/
│   │   │   │   │   │   │   dependencies.py
│   │   │   │   │   │   │   dtypes.py
│   │   │   │   │   │   │   selectors.py
│   │   │   │   │   │   │   typing.py
│   │   │   │   │   │   │   _dtypes.py
│   │   │   │   │   │   │   _namespace.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   dependencies.cpython-310.pyc
│   │   │   │   │   │   │   │   dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   │   _dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   _namespace.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── v2/
│   │   │   │   │   │   │   dependencies.py
│   │   │   │   │   │   │   dtypes.py
│   │   │   │   │   │   │   selectors.py
│   │   │   │   │   │   │   typing.py
│   │   │   │   │   │   │   _namespace.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   dependencies.cpython-310.pyc
│   │   │   │   │   │   │   │   dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   │   _namespace.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── testing/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── asserts/
│   │   │   │   │   │   │   series.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _arrow/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   selectors.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   series_cat.py
│   │   │   │   │   │   series_dt.py
│   │   │   │   │   │   series_list.py
│   │   │   │   │   │   series_str.py
│   │   │   │   │   │   series_struct.py
│   │   │   │   │   │   typing.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   series_cat.cpython-310.pyc
│   │   │   │   │   │   │   series_dt.cpython-310.pyc
│   │   │   │   │   │   │   series_list.cpython-310.pyc
│   │   │   │   │   │   │   series_str.cpython-310.pyc
│   │   │   │   │   │   │   series_struct.cpython-310.pyc
│   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _compliant/
│   │   │   │   │   │   any_namespace.py
│   │   │   │   │   │   column.py
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   selectors.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   typing.py
│   │   │   │   │   │   window.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   any_namespace.cpython-310.pyc
│   │   │   │   │   │   │   column.cpython-310.pyc
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   window.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _dask/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   expr_dt.py
│   │   │   │   │   │   expr_str.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   selectors.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   expr_dt.cpython-310.pyc
│   │   │   │   │   │   │   expr_str.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _duckdb/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   expr_dt.py
│   │   │   │   │   │   expr_list.py
│   │   │   │   │   │   expr_str.py
│   │   │   │   │   │   expr_struct.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   selectors.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   typing.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   expr_dt.cpython-310.pyc
│   │   │   │   │   │   │   expr_list.cpython-310.pyc
│   │   │   │   │   │   │   expr_str.cpython-310.pyc
│   │   │   │   │   │   │   expr_struct.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _ibis/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   expr_dt.py
│   │   │   │   │   │   expr_list.py
│   │   │   │   │   │   expr_str.py
│   │   │   │   │   │   expr_struct.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   selectors.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   expr_dt.cpython-310.pyc
│   │   │   │   │   │   │   expr_list.cpython-310.pyc
│   │   │   │   │   │   │   expr_str.cpython-310.pyc
│   │   │   │   │   │   │   expr_struct.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _interchange/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _pandas_like/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   selectors.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   series_cat.py
│   │   │   │   │   │   series_dt.py
│   │   │   │   │   │   series_list.py
│   │   │   │   │   │   series_str.py
│   │   │   │   │   │   series_struct.py
│   │   │   │   │   │   typing.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   series_cat.cpython-310.pyc
│   │   │   │   │   │   │   series_dt.cpython-310.pyc
│   │   │   │   │   │   │   series_list.cpython-310.pyc
│   │   │   │   │   │   │   series_str.cpython-310.pyc
│   │   │   │   │   │   │   series_struct.cpython-310.pyc
│   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _polars/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   typing.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _spark_like/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   expr_dt.py
│   │   │   │   │   │   expr_list.py
│   │   │   │   │   │   expr_str.py
│   │   │   │   │   │   expr_struct.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   selectors.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   expr_dt.cpython-310.pyc
│   │   │   │   │   │   │   expr_list.cpython-310.pyc
│   │   │   │   │   │   │   expr_str.cpython-310.pyc
│   │   │   │   │   │   │   expr_struct.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _sql/
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   expr.py
│   │   │   │   │   │   expr_dt.py
│   │   │   │   │   │   expr_str.py
│   │   │   │   │   │   group_by.py
│   │   │   │   │   │   namespace.py
│   │   │   │   │   │   typing.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   expr_dt.cpython-310.pyc
│   │   │   │   │   │   │   expr_str.cpython-310.pyc
│   │   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   │   namespace.cpython-310.pyc
│   │   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   dependencies.cpython-310.pyc
│   │   │   │   │   │   dtypes.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   expr_cat.cpython-310.pyc
│   │   │   │   │   │   expr_dt.cpython-310.pyc
│   │   │   │   │   │   expr_list.cpython-310.pyc
│   │   │   │   │   │   expr_name.cpython-310.pyc
│   │   │   │   │   │   expr_str.cpython-310.pyc
│   │   │   │   │   │   expr_struct.cpython-310.pyc
│   │   │   │   │   │   functions.cpython-310.pyc
│   │   │   │   │   │   group_by.cpython-310.pyc
│   │   │   │   │   │   plugins.cpython-310.pyc
│   │   │   │   │   │   schema.cpython-310.pyc
│   │   │   │   │   │   selectors.cpython-310.pyc
│   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   series_cat.cpython-310.pyc
│   │   │   │   │   │   series_dt.cpython-310.pyc
│   │   │   │   │   │   series_list.cpython-310.pyc
│   │   │   │   │   │   series_str.cpython-310.pyc
│   │   │   │   │   │   series_struct.cpython-310.pyc
│   │   │   │   │   │   this.cpython-310.pyc
│   │   │   │   │   │   translate.cpython-310.pyc
│   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   _constants.cpython-310.pyc
│   │   │   │   │   │   _duration.cpython-310.pyc
│   │   │   │   │   │   _enum.cpython-310.pyc
│   │   │   │   │   │   _exceptions.cpython-310.pyc
│   │   │   │   │   │   _expression_parsing.cpython-310.pyc
│   │   │   │   │   │   _namespace.cpython-310.pyc
│   │   │   │   │   │   _native.cpython-310.pyc
│   │   │   │   │   │   _translate.cpython-310.pyc
│   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   _typing_compat.cpython-310.pyc
│   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── narwhals-2.11.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.md
│   │   │   │   ├── numpy/
│   │   │   │   │   conftest.py
│   │   │   │   │   ctypeslib.py
│   │   │   │   │   ctypeslib.pyi
│   │   │   │   │   dtypes.py
│   │   │   │   │   dtypes.pyi
│   │   │   │   │   exceptions.py
│   │   │   │   │   exceptions.pyi
│   │   │   │   │   matlib.py
│   │   │   │   │   matlib.pyi
│   │   │   │   │   py.typed
│   │   │   │   │   version.py
│   │   │   │   │   version.pyi
│   │   │   │   │   _array_api_info.py
│   │   │   │   │   _array_api_info.pyi
│   │   │   │   │   _configtool.py
│   │   │   │   │   _configtool.pyi
│   │   │   │   │   _distributor_init.py
│   │   │   │   │   _distributor_init.pyi
│   │   │   │   │   _expired_attrs_2_0.py
│   │   │   │   │   _expired_attrs_2_0.pyi
│   │   │   │   │   _globals.py
│   │   │   │   │   _globals.pyi
│   │   │   │   │   _pytesttester.py
│   │   │   │   │   _pytesttester.pyi
│   │   │   │   │   __config__.py
│   │   │   │   │   __config__.pyi
│   │   │   │   │   __init__.cython-30.pxd
│   │   │   │   │   __init__.pxd
│   │   │   │   │   __init__.py
│   │   │   │   │   __init__.pyi
│   │   │   │   │   ├── char/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── compat/
│   │   │   │   │   │   py3k.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   py3k.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── core/
│   │   │   │   │   │   arrayprint.py
│   │   │   │   │   │   defchararray.py
│   │   │   │   │   │   einsumfunc.py
│   │   │   │   │   │   fromnumeric.py
│   │   │   │   │   │   function_base.py
│   │   │   │   │   │   getlimits.py
│   │   │   │   │   │   multiarray.py
│   │   │   │   │   │   numeric.py
│   │   │   │   │   │   numerictypes.py
│   │   │   │   │   │   overrides.py
│   │   │   │   │   │   overrides.pyi
│   │   │   │   │   │   records.py
│   │   │   │   │   │   shape_base.py
│   │   │   │   │   │   umath.py
│   │   │   │   │   │   _dtype.py
│   │   │   │   │   │   _dtype.pyi
│   │   │   │   │   │   _dtype_ctypes.py
│   │   │   │   │   │   _dtype_ctypes.pyi
│   │   │   │   │   │   _internal.py
│   │   │   │   │   │   _multiarray_umath.py
│   │   │   │   │   │   _utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   arrayprint.cpython-310.pyc
│   │   │   │   │   │   │   defchararray.cpython-310.pyc
│   │   │   │   │   │   │   einsumfunc.cpython-310.pyc
│   │   │   │   │   │   │   fromnumeric.cpython-310.pyc
│   │   │   │   │   │   │   function_base.cpython-310.pyc
│   │   │   │   │   │   │   getlimits.cpython-310.pyc
│   │   │   │   │   │   │   multiarray.cpython-310.pyc
│   │   │   │   │   │   │   numeric.cpython-310.pyc
│   │   │   │   │   │   │   numerictypes.cpython-310.pyc
│   │   │   │   │   │   │   overrides.cpython-310.pyc
│   │   │   │   │   │   │   records.cpython-310.pyc
│   │   │   │   │   │   │   shape_base.cpython-310.pyc
│   │   │   │   │   │   │   umath.cpython-310.pyc
│   │   │   │   │   │   │   _dtype.cpython-310.pyc
│   │   │   │   │   │   │   _dtype_ctypes.cpython-310.pyc
│   │   │   │   │   │   │   _internal.cpython-310.pyc
│   │   │   │   │   │   │   _multiarray_umath.cpython-310.pyc
│   │   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── distutils/
│   │   │   │   │   │   armccompiler.py
│   │   │   │   │   │   ccompiler.py
│   │   │   │   │   │   ccompiler_opt.py
│   │   │   │   │   │   conv_template.py
│   │   │   │   │   │   core.py
│   │   │   │   │   │   cpuinfo.py
│   │   │   │   │   │   exec_command.py
│   │   │   │   │   │   extension.py
│   │   │   │   │   │   from_template.py
│   │   │   │   │   │   fujitsuccompiler.py
│   │   │   │   │   │   intelccompiler.py
│   │   │   │   │   │   lib2def.py
│   │   │   │   │   │   line_endings.py
│   │   │   │   │   │   log.py
│   │   │   │   │   │   mingw32ccompiler.py
│   │   │   │   │   │   misc_util.py
│   │   │   │   │   │   msvc9compiler.py
│   │   │   │   │   │   msvccompiler.py
│   │   │   │   │   │   npy_pkg_config.py
│   │   │   │   │   │   numpy_distribution.py
│   │   │   │   │   │   pathccompiler.py
│   │   │   │   │   │   system_info.py
│   │   │   │   │   │   unixccompiler.py
│   │   │   │   │   │   _shell_utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── checks/
│   │   │   │   │   │   │   cpu_asimd.c
│   │   │   │   │   │   │   cpu_asimddp.c
│   │   │   │   │   │   │   cpu_asimdfhm.c
│   │   │   │   │   │   │   cpu_asimdhp.c
│   │   │   │   │   │   │   cpu_avx.c
│   │   │   │   │   │   │   cpu_avx2.c
│   │   │   │   │   │   │   cpu_avx512cd.c
│   │   │   │   │   │   │   cpu_avx512f.c
│   │   │   │   │   │   │   cpu_avx512_clx.c
│   │   │   │   │   │   │   cpu_avx512_cnl.c
│   │   │   │   │   │   │   cpu_avx512_icl.c
│   │   │   │   │   │   │   cpu_avx512_knl.c
│   │   │   │   │   │   │   cpu_avx512_knm.c
│   │   │   │   │   │   │   cpu_avx512_skx.c
│   │   │   │   │   │   │   cpu_avx512_spr.c
│   │   │   │   │   │   │   cpu_f16c.c
│   │   │   │   │   │   │   cpu_fma3.c
│   │   │   │   │   │   │   cpu_fma4.c
│   │   │   │   │   │   │   cpu_neon.c
│   │   │   │   │   │   │   cpu_neon_fp16.c
│   │   │   │   │   │   │   cpu_neon_vfpv4.c
│   │   │   │   │   │   │   cpu_popcnt.c
│   │   │   │   │   │   │   cpu_rvv.c
│   │   │   │   │   │   │   cpu_sse.c
│   │   │   │   │   │   │   cpu_sse2.c
│   │   │   │   │   │   │   cpu_sse3.c
│   │   │   │   │   │   │   cpu_sse41.c
│   │   │   │   │   │   │   cpu_sse42.c
│   │   │   │   │   │   │   cpu_ssse3.c
│   │   │   │   │   │   │   cpu_sve.c
│   │   │   │   │   │   │   cpu_vsx.c
│   │   │   │   │   │   │   cpu_vsx2.c
│   │   │   │   │   │   │   cpu_vsx3.c
│   │   │   │   │   │   │   cpu_vsx4.c
│   │   │   │   │   │   │   cpu_vx.c
│   │   │   │   │   │   │   cpu_vxe.c
│   │   │   │   │   │   │   cpu_vxe2.c
│   │   │   │   │   │   │   cpu_xop.c
│   │   │   │   │   │   │   extra_avx512bw_mask.c
│   │   │   │   │   │   │   extra_avx512dq_mask.c
│   │   │   │   │   │   │   extra_avx512f_reduce.c
│   │   │   │   │   │   │   extra_vsx3_half_double.c
│   │   │   │   │   │   │   extra_vsx4_mma.c
│   │   │   │   │   │   │   extra_vsx_asm.c
│   │   │   │   │   │   │   test_flags.c
│   │   │   │   │   │   ├── command/
│   │   │   │   │   │   │   autodist.py
│   │   │   │   │   │   │   bdist_rpm.py
│   │   │   │   │   │   │   build.py
│   │   │   │   │   │   │   build_clib.py
│   │   │   │   │   │   │   build_ext.py
│   │   │   │   │   │   │   build_py.py
│   │   │   │   │   │   │   build_scripts.py
│   │   │   │   │   │   │   build_src.py
│   │   │   │   │   │   │   config.py
│   │   │   │   │   │   │   config_compiler.py
│   │   │   │   │   │   │   develop.py
│   │   │   │   │   │   │   egg_info.py
│   │   │   │   │   │   │   install.py
│   │   │   │   │   │   │   install_clib.py
│   │   │   │   │   │   │   install_data.py
│   │   │   │   │   │   │   install_headers.py
│   │   │   │   │   │   │   sdist.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   autodist.cpython-310.pyc
│   │   │   │   │   │   │   │   bdist_rpm.cpython-310.pyc
│   │   │   │   │   │   │   │   build.cpython-310.pyc
│   │   │   │   │   │   │   │   build_clib.cpython-310.pyc
│   │   │   │   │   │   │   │   build_ext.cpython-310.pyc
│   │   │   │   │   │   │   │   build_py.cpython-310.pyc
│   │   │   │   │   │   │   │   build_scripts.cpython-310.pyc
│   │   │   │   │   │   │   │   build_src.cpython-310.pyc
│   │   │   │   │   │   │   │   config.cpython-310.pyc
│   │   │   │   │   │   │   │   config_compiler.cpython-310.pyc
│   │   │   │   │   │   │   │   develop.cpython-310.pyc
│   │   │   │   │   │   │   │   egg_info.cpython-310.pyc
│   │   │   │   │   │   │   │   install.cpython-310.pyc
│   │   │   │   │   │   │   │   install_clib.cpython-310.pyc
│   │   │   │   │   │   │   │   install_data.cpython-310.pyc
│   │   │   │   │   │   │   │   install_headers.cpython-310.pyc
│   │   │   │   │   │   │   │   sdist.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── fcompiler/
│   │   │   │   │   │   │   absoft.py
│   │   │   │   │   │   │   arm.py
│   │   │   │   │   │   │   compaq.py
│   │   │   │   │   │   │   environment.py
│   │   │   │   │   │   │   fujitsu.py
│   │   │   │   │   │   │   g95.py
│   │   │   │   │   │   │   gnu.py
│   │   │   │   │   │   │   hpux.py
│   │   │   │   │   │   │   ibm.py
│   │   │   │   │   │   │   intel.py
│   │   │   │   │   │   │   lahey.py
│   │   │   │   │   │   │   mips.py
│   │   │   │   │   │   │   nag.py
│   │   │   │   │   │   │   none.py
│   │   │   │   │   │   │   nv.py
│   │   │   │   │   │   │   pathf95.py
│   │   │   │   │   │   │   pg.py
│   │   │   │   │   │   │   sun.py
│   │   │   │   │   │   │   vast.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   absoft.cpython-310.pyc
│   │   │   │   │   │   │   │   arm.cpython-310.pyc
│   │   │   │   │   │   │   │   compaq.cpython-310.pyc
│   │   │   │   │   │   │   │   environment.cpython-310.pyc
│   │   │   │   │   │   │   │   fujitsu.cpython-310.pyc
│   │   │   │   │   │   │   │   g95.cpython-310.pyc
│   │   │   │   │   │   │   │   gnu.cpython-310.pyc
│   │   │   │   │   │   │   │   hpux.cpython-310.pyc
│   │   │   │   │   │   │   │   ibm.cpython-310.pyc
│   │   │   │   │   │   │   │   intel.cpython-310.pyc
│   │   │   │   │   │   │   │   lahey.cpython-310.pyc
│   │   │   │   │   │   │   │   mips.cpython-310.pyc
│   │   │   │   │   │   │   │   nag.cpython-310.pyc
│   │   │   │   │   │   │   │   none.cpython-310.pyc
│   │   │   │   │   │   │   │   nv.cpython-310.pyc
│   │   │   │   │   │   │   │   pathf95.cpython-310.pyc
│   │   │   │   │   │   │   │   pg.cpython-310.pyc
│   │   │   │   │   │   │   │   sun.cpython-310.pyc
│   │   │   │   │   │   │   │   vast.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── mingw/
│   │   │   │   │   │   │   gfortran_vs2003_hack.c
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_build_ext.py
│   │   │   │   │   │   │   test_ccompiler_opt.py
│   │   │   │   │   │   │   test_ccompiler_opt_conf.py
│   │   │   │   │   │   │   test_exec_command.py
│   │   │   │   │   │   │   test_fcompiler.py
│   │   │   │   │   │   │   test_fcompiler_gnu.py
│   │   │   │   │   │   │   test_fcompiler_intel.py
│   │   │   │   │   │   │   test_fcompiler_nagfor.py
│   │   │   │   │   │   │   test_from_template.py
│   │   │   │   │   │   │   test_log.py
│   │   │   │   │   │   │   test_mingw32ccompiler.py
│   │   │   │   │   │   │   test_misc_util.py
│   │   │   │   │   │   │   test_npy_pkg_config.py
│   │   │   │   │   │   │   test_shell_utils.py
│   │   │   │   │   │   │   test_system_info.py
│   │   │   │   │   │   │   utilities.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_build_ext.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ccompiler_opt.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ccompiler_opt_conf.cpython-310.pyc
│   │   │   │   │   │   │   │   test_exec_command.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fcompiler.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fcompiler_gnu.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fcompiler_intel.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fcompiler_nagfor.cpython-310.pyc
│   │   │   │   │   │   │   │   test_from_template.cpython-310.pyc
│   │   │   │   │   │   │   │   test_log.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mingw32ccompiler.cpython-310.pyc
│   │   │   │   │   │   │   │   test_misc_util.cpython-310.pyc
│   │   │   │   │   │   │   │   test_npy_pkg_config.cpython-310.pyc
│   │   │   │   │   │   │   │   test_shell_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   test_system_info.cpython-310.pyc
│   │   │   │   │   │   │   │   utilities.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   armccompiler.cpython-310.pyc
│   │   │   │   │   │   │   ccompiler.cpython-310.pyc
│   │   │   │   │   │   │   ccompiler_opt.cpython-310.pyc
│   │   │   │   │   │   │   conv_template.cpython-310.pyc
│   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   cpuinfo.cpython-310.pyc
│   │   │   │   │   │   │   exec_command.cpython-310.pyc
│   │   │   │   │   │   │   extension.cpython-310.pyc
│   │   │   │   │   │   │   from_template.cpython-310.pyc
│   │   │   │   │   │   │   fujitsuccompiler.cpython-310.pyc
│   │   │   │   │   │   │   intelccompiler.cpython-310.pyc
│   │   │   │   │   │   │   lib2def.cpython-310.pyc
│   │   │   │   │   │   │   line_endings.cpython-310.pyc
│   │   │   │   │   │   │   log.cpython-310.pyc
│   │   │   │   │   │   │   mingw32ccompiler.cpython-310.pyc
│   │   │   │   │   │   │   misc_util.cpython-310.pyc
│   │   │   │   │   │   │   msvc9compiler.cpython-310.pyc
│   │   │   │   │   │   │   msvccompiler.cpython-310.pyc
│   │   │   │   │   │   │   npy_pkg_config.cpython-310.pyc
│   │   │   │   │   │   │   numpy_distribution.cpython-310.pyc
│   │   │   │   │   │   │   pathccompiler.cpython-310.pyc
│   │   │   │   │   │   │   system_info.cpython-310.pyc
│   │   │   │   │   │   │   unixccompiler.cpython-310.pyc
│   │   │   │   │   │   │   _shell_utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── doc/
│   │   │   │   │   │   ufuncs.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   ufuncs.cpython-310.pyc
│   │   │   │   │   ├── f2py/
│   │   │   │   │   │   auxfuncs.py
│   │   │   │   │   │   capi_maps.py
│   │   │   │   │   │   cb_rules.py
│   │   │   │   │   │   cfuncs.py
│   │   │   │   │   │   common_rules.py
│   │   │   │   │   │   crackfortran.py
│   │   │   │   │   │   diagnose.py
│   │   │   │   │   │   f2py2e.py
│   │   │   │   │   │   f90mod_rules.py
│   │   │   │   │   │   func2subr.py
│   │   │   │   │   │   rules.py
│   │   │   │   │   │   setup.cfg
│   │   │   │   │   │   symbolic.py
│   │   │   │   │   │   use_rules.py
│   │   │   │   │   │   _isocbind.py
│   │   │   │   │   │   _src_pyf.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   __version__.py
│   │   │   │   │   │   ├── src/
│   │   │   │   │   │   │   fortranobject.c
│   │   │   │   │   │   │   fortranobject.h
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_abstract_interface.py
│   │   │   │   │   │   │   test_array_from_pyobj.py
│   │   │   │   │   │   │   test_assumed_shape.py
│   │   │   │   │   │   │   test_block_docstring.py
│   │   │   │   │   │   │   test_callback.py
│   │   │   │   │   │   │   test_character.py
│   │   │   │   │   │   │   test_common.py
│   │   │   │   │   │   │   test_crackfortran.py
│   │   │   │   │   │   │   test_data.py
│   │   │   │   │   │   │   test_docs.py
│   │   │   │   │   │   │   test_f2cmap.py
│   │   │   │   │   │   │   test_f2py2e.py
│   │   │   │   │   │   │   test_isoc.py
│   │   │   │   │   │   │   test_kind.py
│   │   │   │   │   │   │   test_mixed.py
│   │   │   │   │   │   │   test_modules.py
│   │   │   │   │   │   │   test_parameter.py
│   │   │   │   │   │   │   test_pyf_src.py
│   │   │   │   │   │   │   test_quoted_character.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   test_return_character.py
│   │   │   │   │   │   │   test_return_complex.py
│   │   │   │   │   │   │   test_return_integer.py
│   │   │   │   │   │   │   test_return_logical.py
│   │   │   │   │   │   │   test_return_real.py
│   │   │   │   │   │   │   test_routines.py
│   │   │   │   │   │   │   test_semicolon_split.py
│   │   │   │   │   │   │   test_size.py
│   │   │   │   │   │   │   test_string.py
│   │   │   │   │   │   │   test_symbolic.py
│   │   │   │   │   │   │   test_value_attrspec.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── src/
│   │   │   │   │   │   │   │   ├── abstract_interface/
│   │   │   │   │   │   │   │   │   foo.f90
│   │   │   │   │   │   │   │   │   gh18403_mod.f90
│   │   │   │   │   │   │   │   ├── array_from_pyobj/
│   │   │   │   │   │   │   │   │   wrapmodule.c
│   │   │   │   │   │   │   │   ├── assumed_shape/
│   │   │   │   │   │   │   │   │   .f2py_f2cmap
│   │   │   │   │   │   │   │   │   foo_free.f90
│   │   │   │   │   │   │   │   │   foo_mod.f90
│   │   │   │   │   │   │   │   │   foo_use.f90
│   │   │   │   │   │   │   │   │   precision.f90
│   │   │   │   │   │   │   │   ├── block_docstring/
│   │   │   │   │   │   │   │   │   foo.f
│   │   │   │   │   │   │   │   ├── callback/
│   │   │   │   │   │   │   │   │   foo.f
│   │   │   │   │   │   │   │   │   gh17797.f90
│   │   │   │   │   │   │   │   │   gh18335.f90
│   │   │   │   │   │   │   │   │   gh25211.f
│   │   │   │   │   │   │   │   │   gh25211.pyf
│   │   │   │   │   │   │   │   │   gh26681.f90
│   │   │   │   │   │   │   │   ├── cli/
│   │   │   │   │   │   │   │   │   gh_22819.pyf
│   │   │   │   │   │   │   │   │   hi77.f
│   │   │   │   │   │   │   │   │   hiworld.f90
│   │   │   │   │   │   │   │   ├── common/
│   │   │   │   │   │   │   │   │   block.f
│   │   │   │   │   │   │   │   │   gh19161.f90
│   │   │   │   │   │   │   │   ├── crackfortran/
│   │   │   │   │   │   │   │   │   accesstype.f90
│   │   │   │   │   │   │   │   │   common_with_division.f
│   │   │   │   │   │   │   │   │   data_common.f
│   │   │   │   │   │   │   │   │   data_multiplier.f
│   │   │   │   │   │   │   │   │   data_stmts.f90
│   │   │   │   │   │   │   │   │   data_with_comments.f
│   │   │   │   │   │   │   │   │   foo_deps.f90
│   │   │   │   │   │   │   │   │   gh15035.f
│   │   │   │   │   │   │   │   │   gh17859.f
│   │   │   │   │   │   │   │   │   gh22648.pyf
│   │   │   │   │   │   │   │   │   gh23533.f
│   │   │   │   │   │   │   │   │   gh23598.f90
│   │   │   │   │   │   │   │   │   gh23598Warn.f90
│   │   │   │   │   │   │   │   │   gh23879.f90
│   │   │   │   │   │   │   │   │   gh27697.f90
│   │   │   │   │   │   │   │   │   gh2848.f90
│   │   │   │   │   │   │   │   │   operators.f90
│   │   │   │   │   │   │   │   │   privatemod.f90
│   │   │   │   │   │   │   │   │   publicmod.f90
│   │   │   │   │   │   │   │   │   pubprivmod.f90
│   │   │   │   │   │   │   │   │   unicode_comment.f90
│   │   │   │   │   │   │   │   ├── f2cmap/
│   │   │   │   │   │   │   │   │   .f2py_f2cmap
│   │   │   │   │   │   │   │   │   isoFortranEnvMap.f90
│   │   │   │   │   │   │   │   ├── isocintrin/
│   │   │   │   │   │   │   │   │   isoCtests.f90
│   │   │   │   │   │   │   │   ├── kind/
│   │   │   │   │   │   │   │   │   foo.f90
│   │   │   │   │   │   │   │   ├── mixed/
│   │   │   │   │   │   │   │   │   foo.f
│   │   │   │   │   │   │   │   │   foo_fixed.f90
│   │   │   │   │   │   │   │   │   foo_free.f90
│   │   │   │   │   │   │   │   ├── modules/
│   │   │   │   │   │   │   │   │   module_data_docstring.f90
│   │   │   │   │   │   │   │   │   use_modules.f90
│   │   │   │   │   │   │   │   │   ├── gh25337/
│   │   │   │   │   │   │   │   │   │   data.f90
│   │   │   │   │   │   │   │   │   │   use_data.f90
│   │   │   │   │   │   │   │   │   ├── gh26920/
│   │   │   │   │   │   │   │   │   │   two_mods_with_no_public_entities.f90
│   │   │   │   │   │   │   │   │   │   two_mods_with_one_public_routine.f90
│   │   │   │   │   │   │   │   ├── negative_bounds/
│   │   │   │   │   │   │   │   │   issue_20853.f90
│   │   │   │   │   │   │   │   ├── parameter/
│   │   │   │   │   │   │   │   │   constant_array.f90
│   │   │   │   │   │   │   │   │   constant_both.f90
│   │   │   │   │   │   │   │   │   constant_compound.f90
│   │   │   │   │   │   │   │   │   constant_integer.f90
│   │   │   │   │   │   │   │   │   constant_non_compound.f90
│   │   │   │   │   │   │   │   │   constant_real.f90
│   │   │   │   │   │   │   │   ├── quoted_character/
│   │   │   │   │   │   │   │   │   foo.f
│   │   │   │   │   │   │   │   ├── regression/
│   │   │   │   │   │   │   │   │   AB.inc
│   │   │   │   │   │   │   │   │   assignOnlyModule.f90
│   │   │   │   │   │   │   │   │   datonly.f90
│   │   │   │   │   │   │   │   │   f77comments.f
│   │   │   │   │   │   │   │   │   f77fixedform.f95
│   │   │   │   │   │   │   │   │   f90continuation.f90
│   │   │   │   │   │   │   │   │   incfile.f90
│   │   │   │   │   │   │   │   │   inout.f90
│   │   │   │   │   │   │   │   │   lower_f2py_fortran.f90
│   │   │   │   │   │   │   │   ├── return_character/
│   │   │   │   │   │   │   │   │   foo77.f
│   │   │   │   │   │   │   │   │   foo90.f90
│   │   │   │   │   │   │   │   ├── return_complex/
│   │   │   │   │   │   │   │   │   foo77.f
│   │   │   │   │   │   │   │   │   foo90.f90
│   │   │   │   │   │   │   │   ├── return_integer/
│   │   │   │   │   │   │   │   │   foo77.f
│   │   │   │   │   │   │   │   │   foo90.f90
│   │   │   │   │   │   │   │   ├── return_logical/
│   │   │   │   │   │   │   │   │   foo77.f
│   │   │   │   │   │   │   │   │   foo90.f90
│   │   │   │   │   │   │   │   ├── return_real/
│   │   │   │   │   │   │   │   │   foo77.f
│   │   │   │   │   │   │   │   │   foo90.f90
│   │   │   │   │   │   │   │   ├── routines/
│   │   │   │   │   │   │   │   │   funcfortranname.f
│   │   │   │   │   │   │   │   │   funcfortranname.pyf
│   │   │   │   │   │   │   │   │   subrout.f
│   │   │   │   │   │   │   │   │   subrout.pyf
│   │   │   │   │   │   │   │   ├── size/
│   │   │   │   │   │   │   │   │   foo.f90
│   │   │   │   │   │   │   │   ├── string/
│   │   │   │   │   │   │   │   │   char.f90
│   │   │   │   │   │   │   │   │   fixed_string.f90
│   │   │   │   │   │   │   │   │   gh24008.f
│   │   │   │   │   │   │   │   │   gh24662.f90
│   │   │   │   │   │   │   │   │   gh25286.f90
│   │   │   │   │   │   │   │   │   gh25286.pyf
│   │   │   │   │   │   │   │   │   gh25286_bc.pyf
│   │   │   │   │   │   │   │   │   scalar_string.f90
│   │   │   │   │   │   │   │   │   string.f
│   │   │   │   │   │   │   │   ├── value_attrspec/
│   │   │   │   │   │   │   │   │   gh21665.f90
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_abstract_interface.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_from_pyobj.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assumed_shape.cpython-310.pyc
│   │   │   │   │   │   │   │   test_block_docstring.cpython-310.pyc
│   │   │   │   │   │   │   │   test_callback.cpython-310.pyc
│   │   │   │   │   │   │   │   test_character.cpython-310.pyc
│   │   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_crackfortran.cpython-310.pyc
│   │   │   │   │   │   │   │   test_data.cpython-310.pyc
│   │   │   │   │   │   │   │   test_docs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_f2cmap.cpython-310.pyc
│   │   │   │   │   │   │   │   test_f2py2e.cpython-310.pyc
│   │   │   │   │   │   │   │   test_isoc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_kind.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mixed.cpython-310.pyc
│   │   │   │   │   │   │   │   test_modules.cpython-310.pyc
│   │   │   │   │   │   │   │   test_parameter.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pyf_src.cpython-310.pyc
│   │   │   │   │   │   │   │   test_quoted_character.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_return_character.cpython-310.pyc
│   │   │   │   │   │   │   │   test_return_complex.cpython-310.pyc
│   │   │   │   │   │   │   │   test_return_integer.cpython-310.pyc
│   │   │   │   │   │   │   │   test_return_logical.cpython-310.pyc
│   │   │   │   │   │   │   │   test_return_real.cpython-310.pyc
│   │   │   │   │   │   │   │   test_routines.cpython-310.pyc
│   │   │   │   │   │   │   │   test_semicolon_split.cpython-310.pyc
│   │   │   │   │   │   │   │   test_size.cpython-310.pyc
│   │   │   │   │   │   │   │   test_string.cpython-310.pyc
│   │   │   │   │   │   │   │   test_symbolic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_value_attrspec.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _backends/
│   │   │   │   │   │   │   meson.build.template
│   │   │   │   │   │   │   _backend.py
│   │   │   │   │   │   │   _distutils.py
│   │   │   │   │   │   │   _meson.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _backend.cpython-310.pyc
│   │   │   │   │   │   │   │   _distutils.cpython-310.pyc
│   │   │   │   │   │   │   │   _meson.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   auxfuncs.cpython-310.pyc
│   │   │   │   │   │   │   capi_maps.cpython-310.pyc
│   │   │   │   │   │   │   cb_rules.cpython-310.pyc
│   │   │   │   │   │   │   cfuncs.cpython-310.pyc
│   │   │   │   │   │   │   common_rules.cpython-310.pyc
│   │   │   │   │   │   │   crackfortran.cpython-310.pyc
│   │   │   │   │   │   │   diagnose.cpython-310.pyc
│   │   │   │   │   │   │   f2py2e.cpython-310.pyc
│   │   │   │   │   │   │   f90mod_rules.cpython-310.pyc
│   │   │   │   │   │   │   func2subr.cpython-310.pyc
│   │   │   │   │   │   │   rules.cpython-310.pyc
│   │   │   │   │   │   │   symbolic.cpython-310.pyc
│   │   │   │   │   │   │   use_rules.cpython-310.pyc
│   │   │   │   │   │   │   _isocbind.cpython-310.pyc
│   │   │   │   │   │   │   _src_pyf.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   │   __version__.cpython-310.pyc
│   │   │   │   │   ├── fft/
│   │   │   │   │   │   helper.py
│   │   │   │   │   │   helper.pyi
│   │   │   │   │   │   _helper.py
│   │   │   │   │   │   _helper.pyi
│   │   │   │   │   │   _pocketfft.py
│   │   │   │   │   │   _pocketfft.pyi
│   │   │   │   │   │   _pocketfft_umath.cp310-win_amd64.lib
│   │   │   │   │   │   _pocketfft_umath.cp310-win_amd64.pyd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_helper.py
│   │   │   │   │   │   │   test_pocketfft.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_helper.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pocketfft.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   helper.cpython-310.pyc
│   │   │   │   │   │   │   _helper.cpython-310.pyc
│   │   │   │   │   │   │   _pocketfft.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── lib/
│   │   │   │   │   │   array_utils.py
│   │   │   │   │   │   array_utils.pyi
│   │   │   │   │   │   format.py
│   │   │   │   │   │   format.pyi
│   │   │   │   │   │   introspect.py
│   │   │   │   │   │   introspect.pyi
│   │   │   │   │   │   mixins.py
│   │   │   │   │   │   mixins.pyi
│   │   │   │   │   │   npyio.py
│   │   │   │   │   │   npyio.pyi
│   │   │   │   │   │   recfunctions.py
│   │   │   │   │   │   recfunctions.pyi
│   │   │   │   │   │   scimath.py
│   │   │   │   │   │   scimath.pyi
│   │   │   │   │   │   stride_tricks.py
│   │   │   │   │   │   stride_tricks.pyi
│   │   │   │   │   │   user_array.py
│   │   │   │   │   │   user_array.pyi
│   │   │   │   │   │   _arraypad_impl.py
│   │   │   │   │   │   _arraypad_impl.pyi
│   │   │   │   │   │   _arraysetops_impl.py
│   │   │   │   │   │   _arraysetops_impl.pyi
│   │   │   │   │   │   _arrayterator_impl.py
│   │   │   │   │   │   _arrayterator_impl.pyi
│   │   │   │   │   │   _array_utils_impl.py
│   │   │   │   │   │   _array_utils_impl.pyi
│   │   │   │   │   │   _datasource.py
│   │   │   │   │   │   _datasource.pyi
│   │   │   │   │   │   _function_base_impl.py
│   │   │   │   │   │   _function_base_impl.pyi
│   │   │   │   │   │   _histograms_impl.py
│   │   │   │   │   │   _histograms_impl.pyi
│   │   │   │   │   │   _index_tricks_impl.py
│   │   │   │   │   │   _index_tricks_impl.pyi
│   │   │   │   │   │   _iotools.py
│   │   │   │   │   │   _iotools.pyi
│   │   │   │   │   │   _nanfunctions_impl.py
│   │   │   │   │   │   _nanfunctions_impl.pyi
│   │   │   │   │   │   _npyio_impl.py
│   │   │   │   │   │   _npyio_impl.pyi
│   │   │   │   │   │   _polynomial_impl.py
│   │   │   │   │   │   _polynomial_impl.pyi
│   │   │   │   │   │   _scimath_impl.py
│   │   │   │   │   │   _scimath_impl.pyi
│   │   │   │   │   │   _shape_base_impl.py
│   │   │   │   │   │   _shape_base_impl.pyi
│   │   │   │   │   │   _stride_tricks_impl.py
│   │   │   │   │   │   _stride_tricks_impl.pyi
│   │   │   │   │   │   _twodim_base_impl.py
│   │   │   │   │   │   _twodim_base_impl.pyi
│   │   │   │   │   │   _type_check_impl.py
│   │   │   │   │   │   _type_check_impl.pyi
│   │   │   │   │   │   _ufunclike_impl.py
│   │   │   │   │   │   _ufunclike_impl.pyi
│   │   │   │   │   │   _user_array_impl.py
│   │   │   │   │   │   _user_array_impl.pyi
│   │   │   │   │   │   _utils_impl.py
│   │   │   │   │   │   _utils_impl.pyi
│   │   │   │   │   │   _version.py
│   │   │   │   │   │   _version.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_arraypad.py
│   │   │   │   │   │   │   test_arraysetops.py
│   │   │   │   │   │   │   test_arrayterator.py
│   │   │   │   │   │   │   test_array_utils.py
│   │   │   │   │   │   │   test_format.py
│   │   │   │   │   │   │   test_function_base.py
│   │   │   │   │   │   │   test_histograms.py
│   │   │   │   │   │   │   test_index_tricks.py
│   │   │   │   │   │   │   test_io.py
│   │   │   │   │   │   │   test_loadtxt.py
│   │   │   │   │   │   │   test_mixins.py
│   │   │   │   │   │   │   test_nanfunctions.py
│   │   │   │   │   │   │   test_packbits.py
│   │   │   │   │   │   │   test_polynomial.py
│   │   │   │   │   │   │   test_recfunctions.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   test_shape_base.py
│   │   │   │   │   │   │   test_stride_tricks.py
│   │   │   │   │   │   │   test_twodim_base.py
│   │   │   │   │   │   │   test_type_check.py
│   │   │   │   │   │   │   test_ufunclike.py
│   │   │   │   │   │   │   test_utils.py
│   │   │   │   │   │   │   test__datasource.py
│   │   │   │   │   │   │   test__iotools.py
│   │   │   │   │   │   │   test__version.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   py2-np0-objarr.npy
│   │   │   │   │   │   │   │   py2-objarr.npy
│   │   │   │   │   │   │   │   py2-objarr.npz
│   │   │   │   │   │   │   │   py3-objarr.npy
│   │   │   │   │   │   │   │   py3-objarr.npz
│   │   │   │   │   │   │   │   python3.npy
│   │   │   │   │   │   │   │   win64python2.npy
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_arraypad.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arraysetops.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arrayterator.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   test_format.cpython-310.pyc
│   │   │   │   │   │   │   │   test_function_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_histograms.cpython-310.pyc
│   │   │   │   │   │   │   │   test_index_tricks.cpython-310.pyc
│   │   │   │   │   │   │   │   test_io.cpython-310.pyc
│   │   │   │   │   │   │   │   test_loadtxt.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mixins.cpython-310.pyc
│   │   │   │   │   │   │   │   test_nanfunctions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_packbits.cpython-310.pyc
│   │   │   │   │   │   │   │   test_polynomial.cpython-310.pyc
│   │   │   │   │   │   │   │   test_recfunctions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_shape_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_stride_tricks.cpython-310.pyc
│   │   │   │   │   │   │   │   test_twodim_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_type_check.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ufunclike.cpython-310.pyc
│   │   │   │   │   │   │   │   test_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   test__datasource.cpython-310.pyc
│   │   │   │   │   │   │   │   test__iotools.cpython-310.pyc
│   │   │   │   │   │   │   │   test__version.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   array_utils.cpython-310.pyc
│   │   │   │   │   │   │   format.cpython-310.pyc
│   │   │   │   │   │   │   introspect.cpython-310.pyc
│   │   │   │   │   │   │   mixins.cpython-310.pyc
│   │   │   │   │   │   │   npyio.cpython-310.pyc
│   │   │   │   │   │   │   recfunctions.cpython-310.pyc
│   │   │   │   │   │   │   scimath.cpython-310.pyc
│   │   │   │   │   │   │   stride_tricks.cpython-310.pyc
│   │   │   │   │   │   │   user_array.cpython-310.pyc
│   │   │   │   │   │   │   _arraypad_impl.cpython-310.pyc
│   │   │   │   │   │   │   _arraysetops_impl.cpython-310.pyc
│   │   │   │   │   │   │   _arrayterator_impl.cpython-310.pyc
│   │   │   │   │   │   │   _array_utils_impl.cpython-310.pyc
│   │   │   │   │   │   │   _datasource.cpython-310.pyc
│   │   │   │   │   │   │   _function_base_impl.cpython-310.pyc
│   │   │   │   │   │   │   _histograms_impl.cpython-310.pyc
│   │   │   │   │   │   │   _index_tricks_impl.cpython-310.pyc
│   │   │   │   │   │   │   _iotools.cpython-310.pyc
│   │   │   │   │   │   │   _nanfunctions_impl.cpython-310.pyc
│   │   │   │   │   │   │   _npyio_impl.cpython-310.pyc
│   │   │   │   │   │   │   _polynomial_impl.cpython-310.pyc
│   │   │   │   │   │   │   _scimath_impl.cpython-310.pyc
│   │   │   │   │   │   │   _shape_base_impl.cpython-310.pyc
│   │   │   │   │   │   │   _stride_tricks_impl.cpython-310.pyc
│   │   │   │   │   │   │   _twodim_base_impl.cpython-310.pyc
│   │   │   │   │   │   │   _type_check_impl.cpython-310.pyc
│   │   │   │   │   │   │   _ufunclike_impl.cpython-310.pyc
│   │   │   │   │   │   │   _user_array_impl.cpython-310.pyc
│   │   │   │   │   │   │   _utils_impl.cpython-310.pyc
│   │   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── linalg/
│   │   │   │   │   │   lapack_lite.cp310-win_amd64.lib
│   │   │   │   │   │   lapack_lite.cp310-win_amd64.pyd
│   │   │   │   │   │   lapack_lite.pyi
│   │   │   │   │   │   linalg.py
│   │   │   │   │   │   linalg.pyi
│   │   │   │   │   │   _linalg.py
│   │   │   │   │   │   _linalg.pyi
│   │   │   │   │   │   _umath_linalg.cp310-win_amd64.lib
│   │   │   │   │   │   _umath_linalg.cp310-win_amd64.pyd
│   │   │   │   │   │   _umath_linalg.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_deprecations.py
│   │   │   │   │   │   │   test_linalg.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_deprecations.cpython-310.pyc
│   │   │   │   │   │   │   │   test_linalg.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   linalg.cpython-310.pyc
│   │   │   │   │   │   │   _linalg.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── ma/
│   │   │   │   │   │   API_CHANGES.txt
│   │   │   │   │   │   core.py
│   │   │   │   │   │   core.pyi
│   │   │   │   │   │   extras.py
│   │   │   │   │   │   extras.pyi
│   │   │   │   │   │   LICENSE
│   │   │   │   │   │   mrecords.py
│   │   │   │   │   │   mrecords.pyi
│   │   │   │   │   │   README.rst
│   │   │   │   │   │   testutils.py
│   │   │   │   │   │   timer_comparison.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_arrayobject.py
│   │   │   │   │   │   │   test_core.py
│   │   │   │   │   │   │   test_deprecations.py
│   │   │   │   │   │   │   test_extras.py
│   │   │   │   │   │   │   test_mrecords.py
│   │   │   │   │   │   │   test_old_ma.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   test_subclassing.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_arrayobject.cpython-310.pyc
│   │   │   │   │   │   │   │   test_core.cpython-310.pyc
│   │   │   │   │   │   │   │   test_deprecations.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extras.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mrecords.cpython-310.pyc
│   │   │   │   │   │   │   │   test_old_ma.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_subclassing.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   extras.cpython-310.pyc
│   │   │   │   │   │   │   mrecords.cpython-310.pyc
│   │   │   │   │   │   │   testutils.cpython-310.pyc
│   │   │   │   │   │   │   timer_comparison.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── matrixlib/
│   │   │   │   │   │   defmatrix.py
│   │   │   │   │   │   defmatrix.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_defmatrix.py
│   │   │   │   │   │   │   test_interaction.py
│   │   │   │   │   │   │   test_masked_matrix.py
│   │   │   │   │   │   │   test_matrix_linalg.py
│   │   │   │   │   │   │   test_multiarray.py
│   │   │   │   │   │   │   test_numeric.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_defmatrix.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interaction.cpython-310.pyc
│   │   │   │   │   │   │   │   test_masked_matrix.cpython-310.pyc
│   │   │   │   │   │   │   │   test_matrix_linalg.cpython-310.pyc
│   │   │   │   │   │   │   │   test_multiarray.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   defmatrix.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── polynomial/
│   │   │   │   │   │   chebyshev.py
│   │   │   │   │   │   chebyshev.pyi
│   │   │   │   │   │   hermite.py
│   │   │   │   │   │   hermite.pyi
│   │   │   │   │   │   hermite_e.py
│   │   │   │   │   │   hermite_e.pyi
│   │   │   │   │   │   laguerre.py
│   │   │   │   │   │   laguerre.pyi
│   │   │   │   │   │   legendre.py
│   │   │   │   │   │   legendre.pyi
│   │   │   │   │   │   polynomial.py
│   │   │   │   │   │   polynomial.pyi
│   │   │   │   │   │   polyutils.py
│   │   │   │   │   │   polyutils.pyi
│   │   │   │   │   │   _polybase.py
│   │   │   │   │   │   _polybase.pyi
│   │   │   │   │   │   _polytypes.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_chebyshev.py
│   │   │   │   │   │   │   test_classes.py
│   │   │   │   │   │   │   test_hermite.py
│   │   │   │   │   │   │   test_hermite_e.py
│   │   │   │   │   │   │   test_laguerre.py
│   │   │   │   │   │   │   test_legendre.py
│   │   │   │   │   │   │   test_polynomial.py
│   │   │   │   │   │   │   test_polyutils.py
│   │   │   │   │   │   │   test_printing.py
│   │   │   │   │   │   │   test_symbol.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_chebyshev.cpython-310.pyc
│   │   │   │   │   │   │   │   test_classes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hermite.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hermite_e.cpython-310.pyc
│   │   │   │   │   │   │   │   test_laguerre.cpython-310.pyc
│   │   │   │   │   │   │   │   test_legendre.cpython-310.pyc
│   │   │   │   │   │   │   │   test_polynomial.cpython-310.pyc
│   │   │   │   │   │   │   │   test_polyutils.cpython-310.pyc
│   │   │   │   │   │   │   │   test_printing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_symbol.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   chebyshev.cpython-310.pyc
│   │   │   │   │   │   │   hermite.cpython-310.pyc
│   │   │   │   │   │   │   hermite_e.cpython-310.pyc
│   │   │   │   │   │   │   laguerre.cpython-310.pyc
│   │   │   │   │   │   │   legendre.cpython-310.pyc
│   │   │   │   │   │   │   polynomial.cpython-310.pyc
│   │   │   │   │   │   │   polyutils.cpython-310.pyc
│   │   │   │   │   │   │   _polybase.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── random/
│   │   │   │   │   │   bit_generator.cp310-win_amd64.lib
│   │   │   │   │   │   bit_generator.cp310-win_amd64.pyd
│   │   │   │   │   │   bit_generator.pxd
│   │   │   │   │   │   bit_generator.pyi
│   │   │   │   │   │   c_distributions.pxd
│   │   │   │   │   │   LICENSE.md
│   │   │   │   │   │   mtrand.cp310-win_amd64.lib
│   │   │   │   │   │   mtrand.cp310-win_amd64.pyd
│   │   │   │   │   │   mtrand.pyi
│   │   │   │   │   │   _bounded_integers.cp310-win_amd64.lib
│   │   │   │   │   │   _bounded_integers.cp310-win_amd64.pyd
│   │   │   │   │   │   _bounded_integers.pxd
│   │   │   │   │   │   _common.cp310-win_amd64.lib
│   │   │   │   │   │   _common.cp310-win_amd64.pyd
│   │   │   │   │   │   _common.pxd
│   │   │   │   │   │   _generator.cp310-win_amd64.lib
│   │   │   │   │   │   _generator.cp310-win_amd64.pyd
│   │   │   │   │   │   _generator.pyi
│   │   │   │   │   │   _mt19937.cp310-win_amd64.lib
│   │   │   │   │   │   _mt19937.cp310-win_amd64.pyd
│   │   │   │   │   │   _mt19937.pyi
│   │   │   │   │   │   _pcg64.cp310-win_amd64.lib
│   │   │   │   │   │   _pcg64.cp310-win_amd64.pyd
│   │   │   │   │   │   _pcg64.pyi
│   │   │   │   │   │   _philox.cp310-win_amd64.lib
│   │   │   │   │   │   _philox.cp310-win_amd64.pyd
│   │   │   │   │   │   _philox.pyi
│   │   │   │   │   │   _pickle.py
│   │   │   │   │   │   _pickle.pyi
│   │   │   │   │   │   _sfc64.cp310-win_amd64.lib
│   │   │   │   │   │   _sfc64.cp310-win_amd64.pyd
│   │   │   │   │   │   _sfc64.pyi
│   │   │   │   │   │   __init__.pxd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── lib/
│   │   │   │   │   │   │   npyrandom.lib
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_direct.py
│   │   │   │   │   │   │   test_extending.py
│   │   │   │   │   │   │   test_generator_mt19937.py
│   │   │   │   │   │   │   test_generator_mt19937_regressions.py
│   │   │   │   │   │   │   test_random.py
│   │   │   │   │   │   │   test_randomstate.py
│   │   │   │   │   │   │   test_randomstate_regression.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   test_seed_sequence.py
│   │   │   │   │   │   │   test_smoke.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   generator_pcg64_np121.pkl.gz
│   │   │   │   │   │   │   │   generator_pcg64_np126.pkl.gz
│   │   │   │   │   │   │   │   mt19937-testset-1.csv
│   │   │   │   │   │   │   │   mt19937-testset-2.csv
│   │   │   │   │   │   │   │   pcg64-testset-1.csv
│   │   │   │   │   │   │   │   pcg64-testset-2.csv
│   │   │   │   │   │   │   │   pcg64dxsm-testset-1.csv
│   │   │   │   │   │   │   │   pcg64dxsm-testset-2.csv
│   │   │   │   │   │   │   │   philox-testset-1.csv
│   │   │   │   │   │   │   │   philox-testset-2.csv
│   │   │   │   │   │   │   │   sfc64-testset-1.csv
│   │   │   │   │   │   │   │   sfc64-testset-2.csv
│   │   │   │   │   │   │   │   sfc64_np126.pkl.gz
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_direct.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extending.cpython-310.pyc
│   │   │   │   │   │   │   │   test_generator_mt19937.cpython-310.pyc
│   │   │   │   │   │   │   │   test_generator_mt19937_regressions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_random.cpython-310.pyc
│   │   │   │   │   │   │   │   test_randomstate.cpython-310.pyc
│   │   │   │   │   │   │   │   test_randomstate_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_seed_sequence.cpython-310.pyc
│   │   │   │   │   │   │   │   test_smoke.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _examples/
│   │   │   │   │   │   │   ├── cffi/
│   │   │   │   │   │   │   │   extending.py
│   │   │   │   │   │   │   │   parse.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   extending.cpython-310.pyc
│   │   │   │   │   │   │   │   │   parse.cpython-310.pyc
│   │   │   │   │   │   │   ├── cython/
│   │   │   │   │   │   │   │   extending.pyx
│   │   │   │   │   │   │   │   extending_distributions.pyx
│   │   │   │   │   │   │   │   meson.build
│   │   │   │   │   │   │   ├── numba/
│   │   │   │   │   │   │   │   extending.py
│   │   │   │   │   │   │   │   extending_distributions.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   extending.cpython-310.pyc
│   │   │   │   │   │   │   │   │   extending_distributions.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _pickle.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── rec/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── strings/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── testing/
│   │   │   │   │   │   overrides.py
│   │   │   │   │   │   overrides.pyi
│   │   │   │   │   │   print_coercion_tables.py
│   │   │   │   │   │   print_coercion_tables.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _private/
│   │   │   │   │   │   │   extbuild.py
│   │   │   │   │   │   │   extbuild.pyi
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   utils.pyi
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   extbuild.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   overrides.cpython-310.pyc
│   │   │   │   │   │   │   print_coercion_tables.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   test_configtool.py
│   │   │   │   │   │   test_ctypeslib.py
│   │   │   │   │   │   test_lazyloading.py
│   │   │   │   │   │   test_matlib.py
│   │   │   │   │   │   test_numpy_config.py
│   │   │   │   │   │   test_numpy_version.py
│   │   │   │   │   │   test_public_api.py
│   │   │   │   │   │   test_reloading.py
│   │   │   │   │   │   test_scripts.py
│   │   │   │   │   │   test_warnings.py
│   │   │   │   │   │   test__all__.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   test_configtool.cpython-310.pyc
│   │   │   │   │   │   │   test_ctypeslib.cpython-310.pyc
│   │   │   │   │   │   │   test_lazyloading.cpython-310.pyc
│   │   │   │   │   │   │   test_matlib.cpython-310.pyc
│   │   │   │   │   │   │   test_numpy_config.cpython-310.pyc
│   │   │   │   │   │   │   test_numpy_version.cpython-310.pyc
│   │   │   │   │   │   │   test_public_api.cpython-310.pyc
│   │   │   │   │   │   │   test_reloading.cpython-310.pyc
│   │   │   │   │   │   │   test_scripts.cpython-310.pyc
│   │   │   │   │   │   │   test_warnings.cpython-310.pyc
│   │   │   │   │   │   │   test__all__.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── typing/
│   │   │   │   │   │   mypy_plugin.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_isfile.py
│   │   │   │   │   │   │   test_runtime.py
│   │   │   │   │   │   │   test_typing.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   mypy.ini
│   │   │   │   │   │   │   │   ├── fail/
│   │   │   │   │   │   │   │   │   arithmetic.pyi
│   │   │   │   │   │   │   │   │   arrayprint.pyi
│   │   │   │   │   │   │   │   │   arrayterator.pyi
│   │   │   │   │   │   │   │   │   array_constructors.pyi
│   │   │   │   │   │   │   │   │   array_like.pyi
│   │   │   │   │   │   │   │   │   array_pad.pyi
│   │   │   │   │   │   │   │   │   bitwise_ops.pyi
│   │   │   │   │   │   │   │   │   char.pyi
│   │   │   │   │   │   │   │   │   chararray.pyi
│   │   │   │   │   │   │   │   │   comparisons.pyi
│   │   │   │   │   │   │   │   │   constants.pyi
│   │   │   │   │   │   │   │   │   datasource.pyi
│   │   │   │   │   │   │   │   │   dtype.pyi
│   │   │   │   │   │   │   │   │   einsumfunc.pyi
│   │   │   │   │   │   │   │   │   flatiter.pyi
│   │   │   │   │   │   │   │   │   fromnumeric.pyi
│   │   │   │   │   │   │   │   │   histograms.pyi
│   │   │   │   │   │   │   │   │   index_tricks.pyi
│   │   │   │   │   │   │   │   │   lib_function_base.pyi
│   │   │   │   │   │   │   │   │   lib_polynomial.pyi
│   │   │   │   │   │   │   │   │   lib_utils.pyi
│   │   │   │   │   │   │   │   │   lib_version.pyi
│   │   │   │   │   │   │   │   │   linalg.pyi
│   │   │   │   │   │   │   │   │   memmap.pyi
│   │   │   │   │   │   │   │   │   modules.pyi
│   │   │   │   │   │   │   │   │   multiarray.pyi
│   │   │   │   │   │   │   │   │   ndarray.pyi
│   │   │   │   │   │   │   │   │   ndarray_misc.pyi
│   │   │   │   │   │   │   │   │   nditer.pyi
│   │   │   │   │   │   │   │   │   nested_sequence.pyi
│   │   │   │   │   │   │   │   │   npyio.pyi
│   │   │   │   │   │   │   │   │   numerictypes.pyi
│   │   │   │   │   │   │   │   │   random.pyi
│   │   │   │   │   │   │   │   │   rec.pyi
│   │   │   │   │   │   │   │   │   scalars.pyi
│   │   │   │   │   │   │   │   │   shape.pyi
│   │   │   │   │   │   │   │   │   shape_base.pyi
│   │   │   │   │   │   │   │   │   stride_tricks.pyi
│   │   │   │   │   │   │   │   │   strings.pyi
│   │   │   │   │   │   │   │   │   testing.pyi
│   │   │   │   │   │   │   │   │   twodim_base.pyi
│   │   │   │   │   │   │   │   │   type_check.pyi
│   │   │   │   │   │   │   │   │   ufunclike.pyi
│   │   │   │   │   │   │   │   │   ufuncs.pyi
│   │   │   │   │   │   │   │   │   ufunc_config.pyi
│   │   │   │   │   │   │   │   │   warnings_and_errors.pyi
│   │   │   │   │   │   │   │   ├── misc/
│   │   │   │   │   │   │   │   │   extended_precision.pyi
│   │   │   │   │   │   │   │   ├── pass/
│   │   │   │   │   │   │   │   │   arithmetic.py
│   │   │   │   │   │   │   │   │   arrayprint.py
│   │   │   │   │   │   │   │   │   arrayterator.py
│   │   │   │   │   │   │   │   │   array_constructors.py
│   │   │   │   │   │   │   │   │   array_like.py
│   │   │   │   │   │   │   │   │   bitwise_ops.py
│   │   │   │   │   │   │   │   │   comparisons.py
│   │   │   │   │   │   │   │   │   dtype.py
│   │   │   │   │   │   │   │   │   einsumfunc.py
│   │   │   │   │   │   │   │   │   flatiter.py
│   │   │   │   │   │   │   │   │   fromnumeric.py
│   │   │   │   │   │   │   │   │   index_tricks.py
│   │   │   │   │   │   │   │   │   lib_user_array.py
│   │   │   │   │   │   │   │   │   lib_utils.py
│   │   │   │   │   │   │   │   │   lib_version.py
│   │   │   │   │   │   │   │   │   literal.py
│   │   │   │   │   │   │   │   │   ma.py
│   │   │   │   │   │   │   │   │   mod.py
│   │   │   │   │   │   │   │   │   modules.py
│   │   │   │   │   │   │   │   │   multiarray.py
│   │   │   │   │   │   │   │   │   ndarray_conversion.py
│   │   │   │   │   │   │   │   │   ndarray_misc.py
│   │   │   │   │   │   │   │   │   ndarray_shape_manipulation.py
│   │   │   │   │   │   │   │   │   nditer.py
│   │   │   │   │   │   │   │   │   numeric.py
│   │   │   │   │   │   │   │   │   numerictypes.py
│   │   │   │   │   │   │   │   │   random.py
│   │   │   │   │   │   │   │   │   recfunctions.py
│   │   │   │   │   │   │   │   │   scalars.py
│   │   │   │   │   │   │   │   │   shape.py
│   │   │   │   │   │   │   │   │   simple.py
│   │   │   │   │   │   │   │   │   simple_py3.py
│   │   │   │   │   │   │   │   │   ufunclike.py
│   │   │   │   │   │   │   │   │   ufuncs.py
│   │   │   │   │   │   │   │   │   ufunc_config.py
│   │   │   │   │   │   │   │   │   warnings_and_errors.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   arrayprint.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   arrayterator.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   array_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   array_like.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   bitwise_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   comparisons.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   dtype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   einsumfunc.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   flatiter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   fromnumeric.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   index_tricks.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   lib_user_array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   lib_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   lib_version.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   literal.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   ma.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   mod.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   modules.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   multiarray.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   ndarray_conversion.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   ndarray_misc.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   ndarray_shape_manipulation.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   nditer.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   numerictypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   random.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   recfunctions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   scalars.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   shape.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   simple.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   simple_py3.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   ufunclike.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   ufuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   ufunc_config.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   warnings_and_errors.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── reveal/
│   │   │   │   │   │   │   │   │   arithmetic.pyi
│   │   │   │   │   │   │   │   │   arraypad.pyi
│   │   │   │   │   │   │   │   │   arrayprint.pyi
│   │   │   │   │   │   │   │   │   arraysetops.pyi
│   │   │   │   │   │   │   │   │   arrayterator.pyi
│   │   │   │   │   │   │   │   │   array_api_info.pyi
│   │   │   │   │   │   │   │   │   array_constructors.pyi
│   │   │   │   │   │   │   │   │   bitwise_ops.pyi
│   │   │   │   │   │   │   │   │   char.pyi
│   │   │   │   │   │   │   │   │   chararray.pyi
│   │   │   │   │   │   │   │   │   comparisons.pyi
│   │   │   │   │   │   │   │   │   constants.pyi
│   │   │   │   │   │   │   │   │   ctypeslib.pyi
│   │   │   │   │   │   │   │   │   datasource.pyi
│   │   │   │   │   │   │   │   │   dtype.pyi
│   │   │   │   │   │   │   │   │   einsumfunc.pyi
│   │   │   │   │   │   │   │   │   emath.pyi
│   │   │   │   │   │   │   │   │   fft.pyi
│   │   │   │   │   │   │   │   │   flatiter.pyi
│   │   │   │   │   │   │   │   │   fromnumeric.pyi
│   │   │   │   │   │   │   │   │   getlimits.pyi
│   │   │   │   │   │   │   │   │   histograms.pyi
│   │   │   │   │   │   │   │   │   index_tricks.pyi
│   │   │   │   │   │   │   │   │   lib_function_base.pyi
│   │   │   │   │   │   │   │   │   lib_polynomial.pyi
│   │   │   │   │   │   │   │   │   lib_utils.pyi
│   │   │   │   │   │   │   │   │   lib_version.pyi
│   │   │   │   │   │   │   │   │   linalg.pyi
│   │   │   │   │   │   │   │   │   matrix.pyi
│   │   │   │   │   │   │   │   │   memmap.pyi
│   │   │   │   │   │   │   │   │   mod.pyi
│   │   │   │   │   │   │   │   │   modules.pyi
│   │   │   │   │   │   │   │   │   multiarray.pyi
│   │   │   │   │   │   │   │   │   nbit_base_example.pyi
│   │   │   │   │   │   │   │   │   ndarray_assignability.pyi
│   │   │   │   │   │   │   │   │   ndarray_conversion.pyi
│   │   │   │   │   │   │   │   │   ndarray_misc.pyi
│   │   │   │   │   │   │   │   │   ndarray_shape_manipulation.pyi
│   │   │   │   │   │   │   │   │   nditer.pyi
│   │   │   │   │   │   │   │   │   nested_sequence.pyi
│   │   │   │   │   │   │   │   │   npyio.pyi
│   │   │   │   │   │   │   │   │   numeric.pyi
│   │   │   │   │   │   │   │   │   numerictypes.pyi
│   │   │   │   │   │   │   │   │   polynomial_polybase.pyi
│   │   │   │   │   │   │   │   │   polynomial_polyutils.pyi
│   │   │   │   │   │   │   │   │   polynomial_series.pyi
│   │   │   │   │   │   │   │   │   random.pyi
│   │   │   │   │   │   │   │   │   rec.pyi
│   │   │   │   │   │   │   │   │   scalars.pyi
│   │   │   │   │   │   │   │   │   shape.pyi
│   │   │   │   │   │   │   │   │   shape_base.pyi
│   │   │   │   │   │   │   │   │   stride_tricks.pyi
│   │   │   │   │   │   │   │   │   strings.pyi
│   │   │   │   │   │   │   │   │   testing.pyi
│   │   │   │   │   │   │   │   │   twodim_base.pyi
│   │   │   │   │   │   │   │   │   type_check.pyi
│   │   │   │   │   │   │   │   │   ufunclike.pyi
│   │   │   │   │   │   │   │   │   ufuncs.pyi
│   │   │   │   │   │   │   │   │   ufunc_config.pyi
│   │   │   │   │   │   │   │   │   warnings_and_errors.pyi
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_isfile.cpython-310.pyc
│   │   │   │   │   │   │   │   test_runtime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_typing.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   mypy_plugin.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _core/
│   │   │   │   │   │   arrayprint.py
│   │   │   │   │   │   arrayprint.pyi
│   │   │   │   │   │   cversions.py
│   │   │   │   │   │   defchararray.py
│   │   │   │   │   │   defchararray.pyi
│   │   │   │   │   │   einsumfunc.py
│   │   │   │   │   │   einsumfunc.pyi
│   │   │   │   │   │   fromnumeric.py
│   │   │   │   │   │   fromnumeric.pyi
│   │   │   │   │   │   function_base.py
│   │   │   │   │   │   function_base.pyi
│   │   │   │   │   │   getlimits.py
│   │   │   │   │   │   getlimits.pyi
│   │   │   │   │   │   memmap.py
│   │   │   │   │   │   memmap.pyi
│   │   │   │   │   │   multiarray.py
│   │   │   │   │   │   multiarray.pyi
│   │   │   │   │   │   numeric.py
│   │   │   │   │   │   numeric.pyi
│   │   │   │   │   │   numerictypes.py
│   │   │   │   │   │   numerictypes.pyi
│   │   │   │   │   │   overrides.py
│   │   │   │   │   │   overrides.pyi
│   │   │   │   │   │   printoptions.py
│   │   │   │   │   │   printoptions.pyi
│   │   │   │   │   │   records.py
│   │   │   │   │   │   records.pyi
│   │   │   │   │   │   shape_base.py
│   │   │   │   │   │   shape_base.pyi
│   │   │   │   │   │   strings.py
│   │   │   │   │   │   strings.pyi
│   │   │   │   │   │   umath.py
│   │   │   │   │   │   umath.pyi
│   │   │   │   │   │   _add_newdocs.py
│   │   │   │   │   │   _add_newdocs.pyi
│   │   │   │   │   │   _add_newdocs_scalars.py
│   │   │   │   │   │   _add_newdocs_scalars.pyi
│   │   │   │   │   │   _asarray.py
│   │   │   │   │   │   _asarray.pyi
│   │   │   │   │   │   _dtype.py
│   │   │   │   │   │   _dtype.pyi
│   │   │   │   │   │   _dtype_ctypes.py
│   │   │   │   │   │   _dtype_ctypes.pyi
│   │   │   │   │   │   _exceptions.py
│   │   │   │   │   │   _exceptions.pyi
│   │   │   │   │   │   _internal.py
│   │   │   │   │   │   _internal.pyi
│   │   │   │   │   │   _machar.py
│   │   │   │   │   │   _machar.pyi
│   │   │   │   │   │   _methods.py
│   │   │   │   │   │   _methods.pyi
│   │   │   │   │   │   _multiarray_tests.cp310-win_amd64.lib
│   │   │   │   │   │   _multiarray_tests.cp310-win_amd64.pyd
│   │   │   │   │   │   _multiarray_umath.cp310-win_amd64.lib
│   │   │   │   │   │   _multiarray_umath.cp310-win_amd64.pyd
│   │   │   │   │   │   _operand_flag_tests.cp310-win_amd64.lib
│   │   │   │   │   │   _operand_flag_tests.cp310-win_amd64.pyd
│   │   │   │   │   │   _rational_tests.cp310-win_amd64.lib
│   │   │   │   │   │   _rational_tests.cp310-win_amd64.pyd
│   │   │   │   │   │   _simd.cp310-win_amd64.lib
│   │   │   │   │   │   _simd.cp310-win_amd64.pyd
│   │   │   │   │   │   _simd.pyi
│   │   │   │   │   │   _string_helpers.py
│   │   │   │   │   │   _string_helpers.pyi
│   │   │   │   │   │   _struct_ufunc_tests.cp310-win_amd64.lib
│   │   │   │   │   │   _struct_ufunc_tests.cp310-win_amd64.pyd
│   │   │   │   │   │   _type_aliases.py
│   │   │   │   │   │   _type_aliases.pyi
│   │   │   │   │   │   _ufunc_config.py
│   │   │   │   │   │   _ufunc_config.pyi
│   │   │   │   │   │   _umath_tests.cp310-win_amd64.lib
│   │   │   │   │   │   _umath_tests.cp310-win_amd64.pyd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── include/
│   │   │   │   │   │   │   ├── numpy/
│   │   │   │   │   │   │   │   arrayobject.h
│   │   │   │   │   │   │   │   arrayscalars.h
│   │   │   │   │   │   │   │   dtype_api.h
│   │   │   │   │   │   │   │   halffloat.h
│   │   │   │   │   │   │   │   ndarrayobject.h
│   │   │   │   │   │   │   │   ndarraytypes.h
│   │   │   │   │   │   │   │   npy_1_7_deprecated_api.h
│   │   │   │   │   │   │   │   npy_2_compat.h
│   │   │   │   │   │   │   │   npy_2_complexcompat.h
│   │   │   │   │   │   │   │   npy_3kcompat.h
│   │   │   │   │   │   │   │   npy_common.h
│   │   │   │   │   │   │   │   npy_cpu.h
│   │   │   │   │   │   │   │   npy_endian.h
│   │   │   │   │   │   │   │   npy_math.h
│   │   │   │   │   │   │   │   npy_no_deprecated_api.h
│   │   │   │   │   │   │   │   npy_os.h
│   │   │   │   │   │   │   │   numpyconfig.h
│   │   │   │   │   │   │   │   ufuncobject.h
│   │   │   │   │   │   │   │   utils.h
│   │   │   │   │   │   │   │   _neighborhood_iterator_imp.h
│   │   │   │   │   │   │   │   _numpyconfig.h
│   │   │   │   │   │   │   │   _public_dtype_api_table.h
│   │   │   │   │   │   │   │   __multiarray_api.c
│   │   │   │   │   │   │   │   __multiarray_api.h
│   │   │   │   │   │   │   │   __ufunc_api.c
│   │   │   │   │   │   │   │   __ufunc_api.h
│   │   │   │   │   │   │   │   ├── random/
│   │   │   │   │   │   │   │   │   bitgen.h
│   │   │   │   │   │   │   │   │   distributions.h
│   │   │   │   │   │   │   │   │   libdivide.h
│   │   │   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   ├── lib/
│   │   │   │   │   │   │   npymath.lib
│   │   │   │   │   │   │   ├── npy-pkg-config/
│   │   │   │   │   │   │   │   mlib.ini
│   │   │   │   │   │   │   │   npymath.ini
│   │   │   │   │   │   │   ├── pkgconfig/
│   │   │   │   │   │   │   │   numpy.pc
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_abc.py
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_argparse.py
│   │   │   │   │   │   │   test_arraymethod.py
│   │   │   │   │   │   │   test_arrayobject.py
│   │   │   │   │   │   │   test_arrayprint.py
│   │   │   │   │   │   │   test_array_api_info.py
│   │   │   │   │   │   │   test_array_coercion.py
│   │   │   │   │   │   │   test_array_interface.py
│   │   │   │   │   │   │   test_casting_floatingpoint_errors.py
│   │   │   │   │   │   │   test_casting_unittests.py
│   │   │   │   │   │   │   test_conversion_utils.py
│   │   │   │   │   │   │   test_cpu_dispatcher.py
│   │   │   │   │   │   │   test_cpu_features.py
│   │   │   │   │   │   │   test_custom_dtypes.py
│   │   │   │   │   │   │   test_cython.py
│   │   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   │   test_defchararray.py
│   │   │   │   │   │   │   test_deprecations.py
│   │   │   │   │   │   │   test_dlpack.py
│   │   │   │   │   │   │   test_dtype.py
│   │   │   │   │   │   │   test_einsum.py
│   │   │   │   │   │   │   test_errstate.py
│   │   │   │   │   │   │   test_extint128.py
│   │   │   │   │   │   │   test_function_base.py
│   │   │   │   │   │   │   test_getlimits.py
│   │   │   │   │   │   │   test_half.py
│   │   │   │   │   │   │   test_hashtable.py
│   │   │   │   │   │   │   test_indexerrors.py
│   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   test_item_selection.py
│   │   │   │   │   │   │   test_limited_api.py
│   │   │   │   │   │   │   test_longdouble.py
│   │   │   │   │   │   │   test_machar.py
│   │   │   │   │   │   │   test_memmap.py
│   │   │   │   │   │   │   test_mem_overlap.py
│   │   │   │   │   │   │   test_mem_policy.py
│   │   │   │   │   │   │   test_multiarray.py
│   │   │   │   │   │   │   test_multithreading.py
│   │   │   │   │   │   │   test_nditer.py
│   │   │   │   │   │   │   test_nep50_promotions.py
│   │   │   │   │   │   │   test_numeric.py
│   │   │   │   │   │   │   test_numerictypes.py
│   │   │   │   │   │   │   test_overrides.py
│   │   │   │   │   │   │   test_print.py
│   │   │   │   │   │   │   test_protocols.py
│   │   │   │   │   │   │   test_records.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   test_scalarbuffer.py
│   │   │   │   │   │   │   test_scalarinherit.py
│   │   │   │   │   │   │   test_scalarmath.py
│   │   │   │   │   │   │   test_scalarprint.py
│   │   │   │   │   │   │   test_scalar_ctors.py
│   │   │   │   │   │   │   test_scalar_methods.py
│   │   │   │   │   │   │   test_shape_base.py
│   │   │   │   │   │   │   test_simd.py
│   │   │   │   │   │   │   test_simd_module.py
│   │   │   │   │   │   │   test_stringdtype.py
│   │   │   │   │   │   │   test_strings.py
│   │   │   │   │   │   │   test_ufunc.py
│   │   │   │   │   │   │   test_umath.py
│   │   │   │   │   │   │   test_umath_accuracy.py
│   │   │   │   │   │   │   test_umath_complex.py
│   │   │   │   │   │   │   test_unicode.py
│   │   │   │   │   │   │   test__exceptions.py
│   │   │   │   │   │   │   _locales.py
│   │   │   │   │   │   │   _natype.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   astype_copy.pkl
│   │   │   │   │   │   │   │   generate_umath_validation_data.cpp
│   │   │   │   │   │   │   │   recarray_from_file.fits
│   │   │   │   │   │   │   │   umath-validation-set-arccos.csv
│   │   │   │   │   │   │   │   umath-validation-set-arccosh.csv
│   │   │   │   │   │   │   │   umath-validation-set-arcsin.csv
│   │   │   │   │   │   │   │   umath-validation-set-arcsinh.csv
│   │   │   │   │   │   │   │   umath-validation-set-arctan.csv
│   │   │   │   │   │   │   │   umath-validation-set-arctanh.csv
│   │   │   │   │   │   │   │   umath-validation-set-cbrt.csv
│   │   │   │   │   │   │   │   umath-validation-set-cos.csv
│   │   │   │   │   │   │   │   umath-validation-set-cosh.csv
│   │   │   │   │   │   │   │   umath-validation-set-exp.csv
│   │   │   │   │   │   │   │   umath-validation-set-exp2.csv
│   │   │   │   │   │   │   │   umath-validation-set-expm1.csv
│   │   │   │   │   │   │   │   umath-validation-set-log.csv
│   │   │   │   │   │   │   │   umath-validation-set-log10.csv
│   │   │   │   │   │   │   │   umath-validation-set-log1p.csv
│   │   │   │   │   │   │   │   umath-validation-set-log2.csv
│   │   │   │   │   │   │   │   umath-validation-set-README.txt
│   │   │   │   │   │   │   │   umath-validation-set-sin.csv
│   │   │   │   │   │   │   │   umath-validation-set-sinh.csv
│   │   │   │   │   │   │   │   umath-validation-set-tan.csv
│   │   │   │   │   │   │   │   umath-validation-set-tanh.csv
│   │   │   │   │   │   │   ├── examples/
│   │   │   │   │   │   │   │   ├── cython/
│   │   │   │   │   │   │   │   │   checks.pyx
│   │   │   │   │   │   │   │   │   meson.build
│   │   │   │   │   │   │   │   │   setup.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   setup.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── limited_api/
│   │   │   │   │   │   │   │   │   limited_api1.c
│   │   │   │   │   │   │   │   │   limited_api2.pyx
│   │   │   │   │   │   │   │   │   limited_api_latest.c
│   │   │   │   │   │   │   │   │   meson.build
│   │   │   │   │   │   │   │   │   setup.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   setup.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_abc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_argparse.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arraymethod.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arrayobject.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arrayprint.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_api_info.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_coercion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_interface.cpython-310.pyc
│   │   │   │   │   │   │   │   test_casting_floatingpoint_errors.cpython-310.pyc
│   │   │   │   │   │   │   │   test_casting_unittests.cpython-310.pyc
│   │   │   │   │   │   │   │   test_conversion_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cpu_dispatcher.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cpu_features.cpython-310.pyc
│   │   │   │   │   │   │   │   test_custom_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cython.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_defchararray.cpython-310.pyc
│   │   │   │   │   │   │   │   test_deprecations.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dlpack.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dtype.cpython-310.pyc
│   │   │   │   │   │   │   │   test_einsum.cpython-310.pyc
│   │   │   │   │   │   │   │   test_errstate.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extint128.cpython-310.pyc
│   │   │   │   │   │   │   │   test_function_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_getlimits.cpython-310.pyc
│   │   │   │   │   │   │   │   test_half.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hashtable.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexerrors.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_item_selection.cpython-310.pyc
│   │   │   │   │   │   │   │   test_limited_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_longdouble.cpython-310.pyc
│   │   │   │   │   │   │   │   test_machar.cpython-310.pyc
│   │   │   │   │   │   │   │   test_memmap.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mem_overlap.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mem_policy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_multiarray.cpython-310.pyc
│   │   │   │   │   │   │   │   test_multithreading.cpython-310.pyc
│   │   │   │   │   │   │   │   test_nditer.cpython-310.pyc
│   │   │   │   │   │   │   │   test_nep50_promotions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numerictypes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_overrides.cpython-310.pyc
│   │   │   │   │   │   │   │   test_print.cpython-310.pyc
│   │   │   │   │   │   │   │   test_protocols.cpython-310.pyc
│   │   │   │   │   │   │   │   test_records.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scalarbuffer.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scalarinherit.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scalarmath.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scalarprint.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scalar_ctors.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scalar_methods.cpython-310.pyc
│   │   │   │   │   │   │   │   test_shape_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_simd.cpython-310.pyc
│   │   │   │   │   │   │   │   test_simd_module.cpython-310.pyc
│   │   │   │   │   │   │   │   test_stringdtype.cpython-310.pyc
│   │   │   │   │   │   │   │   test_strings.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ufunc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_umath.cpython-310.pyc
│   │   │   │   │   │   │   │   test_umath_accuracy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_umath_complex.cpython-310.pyc
│   │   │   │   │   │   │   │   test_unicode.cpython-310.pyc
│   │   │   │   │   │   │   │   test__exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   _locales.cpython-310.pyc
│   │   │   │   │   │   │   │   _natype.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   arrayprint.cpython-310.pyc
│   │   │   │   │   │   │   cversions.cpython-310.pyc
│   │   │   │   │   │   │   defchararray.cpython-310.pyc
│   │   │   │   │   │   │   einsumfunc.cpython-310.pyc
│   │   │   │   │   │   │   fromnumeric.cpython-310.pyc
│   │   │   │   │   │   │   function_base.cpython-310.pyc
│   │   │   │   │   │   │   getlimits.cpython-310.pyc
│   │   │   │   │   │   │   memmap.cpython-310.pyc
│   │   │   │   │   │   │   multiarray.cpython-310.pyc
│   │   │   │   │   │   │   numeric.cpython-310.pyc
│   │   │   │   │   │   │   numerictypes.cpython-310.pyc
│   │   │   │   │   │   │   overrides.cpython-310.pyc
│   │   │   │   │   │   │   printoptions.cpython-310.pyc
│   │   │   │   │   │   │   records.cpython-310.pyc
│   │   │   │   │   │   │   shape_base.cpython-310.pyc
│   │   │   │   │   │   │   strings.cpython-310.pyc
│   │   │   │   │   │   │   umath.cpython-310.pyc
│   │   │   │   │   │   │   _add_newdocs.cpython-310.pyc
│   │   │   │   │   │   │   _add_newdocs_scalars.cpython-310.pyc
│   │   │   │   │   │   │   _asarray.cpython-310.pyc
│   │   │   │   │   │   │   _dtype.cpython-310.pyc
│   │   │   │   │   │   │   _dtype_ctypes.cpython-310.pyc
│   │   │   │   │   │   │   _exceptions.cpython-310.pyc
│   │   │   │   │   │   │   _internal.cpython-310.pyc
│   │   │   │   │   │   │   _machar.cpython-310.pyc
│   │   │   │   │   │   │   _methods.cpython-310.pyc
│   │   │   │   │   │   │   _string_helpers.cpython-310.pyc
│   │   │   │   │   │   │   _type_aliases.cpython-310.pyc
│   │   │   │   │   │   │   _ufunc_config.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _pyinstaller/
│   │   │   │   │   │   hook-numpy.py
│   │   │   │   │   │   hook-numpy.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   pyinstaller-smoke.py
│   │   │   │   │   │   │   test_pyinstaller.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   pyinstaller-smoke.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pyinstaller.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   hook-numpy.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _typing/
│   │   │   │   │   │   _add_docstring.py
│   │   │   │   │   │   _array_like.py
│   │   │   │   │   │   _callable.pyi
│   │   │   │   │   │   _char_codes.py
│   │   │   │   │   │   _dtype_like.py
│   │   │   │   │   │   _extended_precision.py
│   │   │   │   │   │   _nbit.py
│   │   │   │   │   │   _nbit_base.py
│   │   │   │   │   │   _nested_sequence.py
│   │   │   │   │   │   _scalars.py
│   │   │   │   │   │   _shape.py
│   │   │   │   │   │   _ufunc.py
│   │   │   │   │   │   _ufunc.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _add_docstring.cpython-310.pyc
│   │   │   │   │   │   │   _array_like.cpython-310.pyc
│   │   │   │   │   │   │   _char_codes.cpython-310.pyc
│   │   │   │   │   │   │   _dtype_like.cpython-310.pyc
│   │   │   │   │   │   │   _extended_precision.cpython-310.pyc
│   │   │   │   │   │   │   _nbit.cpython-310.pyc
│   │   │   │   │   │   │   _nbit_base.cpython-310.pyc
│   │   │   │   │   │   │   _nested_sequence.cpython-310.pyc
│   │   │   │   │   │   │   _scalars.cpython-310.pyc
│   │   │   │   │   │   │   _shape.cpython-310.pyc
│   │   │   │   │   │   │   _ufunc.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _utils/
│   │   │   │   │   │   _convertions.py
│   │   │   │   │   │   _convertions.pyi
│   │   │   │   │   │   _inspect.py
│   │   │   │   │   │   _inspect.pyi
│   │   │   │   │   │   _pep440.py
│   │   │   │   │   │   _pep440.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __init__.pyi
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _convertions.cpython-310.pyc
│   │   │   │   │   │   │   _inspect.cpython-310.pyc
│   │   │   │   │   │   │   _pep440.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   ctypeslib.cpython-310.pyc
│   │   │   │   │   │   dtypes.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   matlib.cpython-310.pyc
│   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   _array_api_info.cpython-310.pyc
│   │   │   │   │   │   _configtool.cpython-310.pyc
│   │   │   │   │   │   _distributor_init.cpython-310.pyc
│   │   │   │   │   │   _expired_attrs_2_0.cpython-310.pyc
│   │   │   │   │   │   _globals.cpython-310.pyc
│   │   │   │   │   │   _pytesttester.cpython-310.pyc
│   │   │   │   │   │   __config__.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── numpy-2.2.6.dist-info/
│   │   │   │   │   DELVEWHEEL
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE.txt
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   ├── numpy.libs/
│   │   │   │   │   libscipy_openblas64_-13e2df515630b4a41f92893938845698.dll
│   │   │   │   │   msvcp140-263139962577ecda4cd9469ca360a746.dll
│   │   │   │   ├── packaging/
│   │   │   │   │   markers.py
│   │   │   │   │   metadata.py
│   │   │   │   │   py.typed
│   │   │   │   │   requirements.py
│   │   │   │   │   specifiers.py
│   │   │   │   │   tags.py
│   │   │   │   │   utils.py
│   │   │   │   │   version.py
│   │   │   │   │   _elffile.py
│   │   │   │   │   _manylinux.py
│   │   │   │   │   _musllinux.py
│   │   │   │   │   _parser.py
│   │   │   │   │   _structures.py
│   │   │   │   │   _tokenizer.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   _spdx.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _spdx.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   markers.cpython-310.pyc
│   │   │   │   │   │   metadata.cpython-310.pyc
│   │   │   │   │   │   requirements.cpython-310.pyc
│   │   │   │   │   │   specifiers.cpython-310.pyc
│   │   │   │   │   │   tags.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   _elffile.cpython-310.pyc
│   │   │   │   │   │   _manylinux.cpython-310.pyc
│   │   │   │   │   │   _musllinux.cpython-310.pyc
│   │   │   │   │   │   _parser.cpython-310.pyc
│   │   │   │   │   │   _structures.cpython-310.pyc
│   │   │   │   │   │   _tokenizer.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── packaging-25.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   │   │   LICENSE.APACHE
│   │   │   │   │   │   LICENSE.BSD
│   │   │   │   ├── pandas/
│   │   │   │   │   conftest.py
│   │   │   │   │   pyproject.toml
│   │   │   │   │   testing.py
│   │   │   │   │   _typing.py
│   │   │   │   │   _version.py
│   │   │   │   │   _version_meson.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── api/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── extensions/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── indexers/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── interchange/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── types/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── typing/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── arrays/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── compat/
│   │   │   │   │   │   compressors.py
│   │   │   │   │   │   pickle_compat.py
│   │   │   │   │   │   pyarrow.py
│   │   │   │   │   │   _constants.py
│   │   │   │   │   │   _optional.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── numpy/
│   │   │   │   │   │   │   function.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   function.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   compressors.cpython-310.pyc
│   │   │   │   │   │   │   pickle_compat.cpython-310.pyc
│   │   │   │   │   │   │   pyarrow.cpython-310.pyc
│   │   │   │   │   │   │   _constants.cpython-310.pyc
│   │   │   │   │   │   │   _optional.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── core/
│   │   │   │   │   │   accessor.py
│   │   │   │   │   │   algorithms.py
│   │   │   │   │   │   api.py
│   │   │   │   │   │   apply.py
│   │   │   │   │   │   arraylike.py
│   │   │   │   │   │   base.py
│   │   │   │   │   │   common.py
│   │   │   │   │   │   config_init.py
│   │   │   │   │   │   construction.py
│   │   │   │   │   │   flags.py
│   │   │   │   │   │   frame.py
│   │   │   │   │   │   generic.py
│   │   │   │   │   │   indexing.py
│   │   │   │   │   │   missing.py
│   │   │   │   │   │   nanops.py
│   │   │   │   │   │   resample.py
│   │   │   │   │   │   roperator.py
│   │   │   │   │   │   sample.py
│   │   │   │   │   │   series.py
│   │   │   │   │   │   shared_docs.py
│   │   │   │   │   │   sorting.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── arrays/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   boolean.py
│   │   │   │   │   │   │   categorical.py
│   │   │   │   │   │   │   datetimelike.py
│   │   │   │   │   │   │   datetimes.py
│   │   │   │   │   │   │   floating.py
│   │   │   │   │   │   │   integer.py
│   │   │   │   │   │   │   interval.py
│   │   │   │   │   │   │   masked.py
│   │   │   │   │   │   │   numeric.py
│   │   │   │   │   │   │   numpy_.py
│   │   │   │   │   │   │   period.py
│   │   │   │   │   │   │   string_.py
│   │   │   │   │   │   │   string_arrow.py
│   │   │   │   │   │   │   timedeltas.py
│   │   │   │   │   │   │   _arrow_string_mixins.py
│   │   │   │   │   │   │   _mixins.py
│   │   │   │   │   │   │   _ranges.py
│   │   │   │   │   │   │   _utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── arrow/
│   │   │   │   │   │   │   │   accessors.py
│   │   │   │   │   │   │   │   array.py
│   │   │   │   │   │   │   │   extension_types.py
│   │   │   │   │   │   │   │   _arrow_utils.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   accessors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   extension_types.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _arrow_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── sparse/
│   │   │   │   │   │   │   │   accessor.py
│   │   │   │   │   │   │   │   array.py
│   │   │   │   │   │   │   │   scipy_sparse.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   scipy_sparse.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   boolean.cpython-310.pyc
│   │   │   │   │   │   │   │   categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   datetimelike.cpython-310.pyc
│   │   │   │   │   │   │   │   datetimes.cpython-310.pyc
│   │   │   │   │   │   │   │   floating.cpython-310.pyc
│   │   │   │   │   │   │   │   integer.cpython-310.pyc
│   │   │   │   │   │   │   │   interval.cpython-310.pyc
│   │   │   │   │   │   │   │   masked.cpython-310.pyc
│   │   │   │   │   │   │   │   numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   numpy_.cpython-310.pyc
│   │   │   │   │   │   │   │   period.cpython-310.pyc
│   │   │   │   │   │   │   │   string_.cpython-310.pyc
│   │   │   │   │   │   │   │   string_arrow.cpython-310.pyc
│   │   │   │   │   │   │   │   timedeltas.cpython-310.pyc
│   │   │   │   │   │   │   │   _arrow_string_mixins.cpython-310.pyc
│   │   │   │   │   │   │   │   _mixins.cpython-310.pyc
│   │   │   │   │   │   │   │   _ranges.cpython-310.pyc
│   │   │   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── array_algos/
│   │   │   │   │   │   │   datetimelike_accumulations.py
│   │   │   │   │   │   │   masked_accumulations.py
│   │   │   │   │   │   │   masked_reductions.py
│   │   │   │   │   │   │   putmask.py
│   │   │   │   │   │   │   quantile.py
│   │   │   │   │   │   │   replace.py
│   │   │   │   │   │   │   take.py
│   │   │   │   │   │   │   transforms.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   datetimelike_accumulations.cpython-310.pyc
│   │   │   │   │   │   │   │   masked_accumulations.cpython-310.pyc
│   │   │   │   │   │   │   │   masked_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   putmask.cpython-310.pyc
│   │   │   │   │   │   │   │   quantile.cpython-310.pyc
│   │   │   │   │   │   │   │   replace.cpython-310.pyc
│   │   │   │   │   │   │   │   take.cpython-310.pyc
│   │   │   │   │   │   │   │   transforms.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── computation/
│   │   │   │   │   │   │   align.py
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   check.py
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   engines.py
│   │   │   │   │   │   │   eval.py
│   │   │   │   │   │   │   expr.py
│   │   │   │   │   │   │   expressions.py
│   │   │   │   │   │   │   ops.py
│   │   │   │   │   │   │   parsing.py
│   │   │   │   │   │   │   pytables.py
│   │   │   │   │   │   │   scope.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   align.cpython-310.pyc
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   check.cpython-310.pyc
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   engines.cpython-310.pyc
│   │   │   │   │   │   │   │   eval.cpython-310.pyc
│   │   │   │   │   │   │   │   expr.cpython-310.pyc
│   │   │   │   │   │   │   │   expressions.cpython-310.pyc
│   │   │   │   │   │   │   │   ops.cpython-310.pyc
│   │   │   │   │   │   │   │   parsing.cpython-310.pyc
│   │   │   │   │   │   │   │   pytables.cpython-310.pyc
│   │   │   │   │   │   │   │   scope.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── dtypes/
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   astype.py
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   cast.py
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   concat.py
│   │   │   │   │   │   │   dtypes.py
│   │   │   │   │   │   │   generic.py
│   │   │   │   │   │   │   inference.py
│   │   │   │   │   │   │   missing.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   astype.cpython-310.pyc
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   cast.cpython-310.pyc
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   concat.cpython-310.pyc
│   │   │   │   │   │   │   │   dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   generic.cpython-310.pyc
│   │   │   │   │   │   │   │   inference.cpython-310.pyc
│   │   │   │   │   │   │   │   missing.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── groupby/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   categorical.py
│   │   │   │   │   │   │   generic.py
│   │   │   │   │   │   │   groupby.py
│   │   │   │   │   │   │   grouper.py
│   │   │   │   │   │   │   indexing.py
│   │   │   │   │   │   │   numba_.py
│   │   │   │   │   │   │   ops.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   generic.cpython-310.pyc
│   │   │   │   │   │   │   │   groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   grouper.cpython-310.pyc
│   │   │   │   │   │   │   │   indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   numba_.cpython-310.pyc
│   │   │   │   │   │   │   │   ops.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── indexers/
│   │   │   │   │   │   │   objects.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   objects.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── indexes/
│   │   │   │   │   │   │   accessors.py
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   category.py
│   │   │   │   │   │   │   datetimelike.py
│   │   │   │   │   │   │   datetimes.py
│   │   │   │   │   │   │   extension.py
│   │   │   │   │   │   │   frozen.py
│   │   │   │   │   │   │   interval.py
│   │   │   │   │   │   │   multi.py
│   │   │   │   │   │   │   period.py
│   │   │   │   │   │   │   range.py
│   │   │   │   │   │   │   timedeltas.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   accessors.cpython-310.pyc
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   category.cpython-310.pyc
│   │   │   │   │   │   │   │   datetimelike.cpython-310.pyc
│   │   │   │   │   │   │   │   datetimes.cpython-310.pyc
│   │   │   │   │   │   │   │   extension.cpython-310.pyc
│   │   │   │   │   │   │   │   frozen.cpython-310.pyc
│   │   │   │   │   │   │   │   interval.cpython-310.pyc
│   │   │   │   │   │   │   │   multi.cpython-310.pyc
│   │   │   │   │   │   │   │   period.cpython-310.pyc
│   │   │   │   │   │   │   │   range.cpython-310.pyc
│   │   │   │   │   │   │   │   timedeltas.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── interchange/
│   │   │   │   │   │   │   buffer.py
│   │   │   │   │   │   │   column.py
│   │   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   │   dataframe_protocol.py
│   │   │   │   │   │   │   from_dataframe.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   buffer.cpython-310.pyc
│   │   │   │   │   │   │   │   column.cpython-310.pyc
│   │   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   │   dataframe_protocol.cpython-310.pyc
│   │   │   │   │   │   │   │   from_dataframe.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── internals/
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   array_manager.py
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   blocks.py
│   │   │   │   │   │   │   concat.py
│   │   │   │   │   │   │   construction.py
│   │   │   │   │   │   │   managers.py
│   │   │   │   │   │   │   ops.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   array_manager.cpython-310.pyc
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   blocks.cpython-310.pyc
│   │   │   │   │   │   │   │   concat.cpython-310.pyc
│   │   │   │   │   │   │   │   construction.cpython-310.pyc
│   │   │   │   │   │   │   │   managers.cpython-310.pyc
│   │   │   │   │   │   │   │   ops.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   describe.py
│   │   │   │   │   │   │   selectn.py
│   │   │   │   │   │   │   to_dict.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   describe.cpython-310.pyc
│   │   │   │   │   │   │   │   selectn.cpython-310.pyc
│   │   │   │   │   │   │   │   to_dict.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── ops/
│   │   │   │   │   │   │   array_ops.py
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   dispatch.py
│   │   │   │   │   │   │   docstrings.py
│   │   │   │   │   │   │   invalid.py
│   │   │   │   │   │   │   mask_ops.py
│   │   │   │   │   │   │   missing.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   array_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   dispatch.cpython-310.pyc
│   │   │   │   │   │   │   │   docstrings.cpython-310.pyc
│   │   │   │   │   │   │   │   invalid.cpython-310.pyc
│   │   │   │   │   │   │   │   mask_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   missing.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── reshape/
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   concat.py
│   │   │   │   │   │   │   encoding.py
│   │   │   │   │   │   │   melt.py
│   │   │   │   │   │   │   merge.py
│   │   │   │   │   │   │   pivot.py
│   │   │   │   │   │   │   reshape.py
│   │   │   │   │   │   │   tile.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   concat.cpython-310.pyc
│   │   │   │   │   │   │   │   encoding.cpython-310.pyc
│   │   │   │   │   │   │   │   melt.cpython-310.pyc
│   │   │   │   │   │   │   │   merge.cpython-310.pyc
│   │   │   │   │   │   │   │   pivot.cpython-310.pyc
│   │   │   │   │   │   │   │   reshape.cpython-310.pyc
│   │   │   │   │   │   │   │   tile.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── sparse/
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── strings/
│   │   │   │   │   │   │   accessor.py
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   object_array.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   object_array.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tools/
│   │   │   │   │   │   │   datetimes.py
│   │   │   │   │   │   │   numeric.py
│   │   │   │   │   │   │   timedeltas.py
│   │   │   │   │   │   │   times.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   datetimes.cpython-310.pyc
│   │   │   │   │   │   │   │   numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   timedeltas.cpython-310.pyc
│   │   │   │   │   │   │   │   times.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── util/
│   │   │   │   │   │   │   hashing.py
│   │   │   │   │   │   │   numba_.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   hashing.cpython-310.pyc
│   │   │   │   │   │   │   │   numba_.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── window/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   doc.py
│   │   │   │   │   │   │   ewm.py
│   │   │   │   │   │   │   expanding.py
│   │   │   │   │   │   │   numba_.py
│   │   │   │   │   │   │   online.py
│   │   │   │   │   │   │   rolling.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   doc.cpython-310.pyc
│   │   │   │   │   │   │   │   ewm.cpython-310.pyc
│   │   │   │   │   │   │   │   expanding.cpython-310.pyc
│   │   │   │   │   │   │   │   numba_.cpython-310.pyc
│   │   │   │   │   │   │   │   online.cpython-310.pyc
│   │   │   │   │   │   │   │   rolling.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _numba/
│   │   │   │   │   │   │   executor.py
│   │   │   │   │   │   │   extensions.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── kernels/
│   │   │   │   │   │   │   │   mean_.py
│   │   │   │   │   │   │   │   min_max_.py
│   │   │   │   │   │   │   │   shared.py
│   │   │   │   │   │   │   │   sum_.py
│   │   │   │   │   │   │   │   var_.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   mean_.cpython-310.pyc
│   │   │   │   │   │   │   │   │   min_max_.cpython-310.pyc
│   │   │   │   │   │   │   │   │   shared.cpython-310.pyc
│   │   │   │   │   │   │   │   │   sum_.cpython-310.pyc
│   │   │   │   │   │   │   │   │   var_.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   executor.cpython-310.pyc
│   │   │   │   │   │   │   │   extensions.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   accessor.cpython-310.pyc
│   │   │   │   │   │   │   algorithms.cpython-310.pyc
│   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   apply.cpython-310.pyc
│   │   │   │   │   │   │   arraylike.cpython-310.pyc
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   config_init.cpython-310.pyc
│   │   │   │   │   │   │   construction.cpython-310.pyc
│   │   │   │   │   │   │   flags.cpython-310.pyc
│   │   │   │   │   │   │   frame.cpython-310.pyc
│   │   │   │   │   │   │   generic.cpython-310.pyc
│   │   │   │   │   │   │   indexing.cpython-310.pyc
│   │   │   │   │   │   │   missing.cpython-310.pyc
│   │   │   │   │   │   │   nanops.cpython-310.pyc
│   │   │   │   │   │   │   resample.cpython-310.pyc
│   │   │   │   │   │   │   roperator.cpython-310.pyc
│   │   │   │   │   │   │   sample.cpython-310.pyc
│   │   │   │   │   │   │   series.cpython-310.pyc
│   │   │   │   │   │   │   shared_docs.cpython-310.pyc
│   │   │   │   │   │   │   sorting.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── errors/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── io/
│   │   │   │   │   │   api.py
│   │   │   │   │   │   clipboards.py
│   │   │   │   │   │   common.py
│   │   │   │   │   │   feather_format.py
│   │   │   │   │   │   gbq.py
│   │   │   │   │   │   html.py
│   │   │   │   │   │   orc.py
│   │   │   │   │   │   parquet.py
│   │   │   │   │   │   pickle.py
│   │   │   │   │   │   pytables.py
│   │   │   │   │   │   spss.py
│   │   │   │   │   │   sql.py
│   │   │   │   │   │   stata.py
│   │   │   │   │   │   xml.py
│   │   │   │   │   │   _util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── clipboard/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── excel/
│   │   │   │   │   │   │   _base.py
│   │   │   │   │   │   │   _calamine.py
│   │   │   │   │   │   │   _odfreader.py
│   │   │   │   │   │   │   _odswriter.py
│   │   │   │   │   │   │   _openpyxl.py
│   │   │   │   │   │   │   _pyxlsb.py
│   │   │   │   │   │   │   _util.py
│   │   │   │   │   │   │   _xlrd.py
│   │   │   │   │   │   │   _xlsxwriter.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _base.cpython-310.pyc
│   │   │   │   │   │   │   │   _calamine.cpython-310.pyc
│   │   │   │   │   │   │   │   _odfreader.cpython-310.pyc
│   │   │   │   │   │   │   │   _odswriter.cpython-310.pyc
│   │   │   │   │   │   │   │   _openpyxl.cpython-310.pyc
│   │   │   │   │   │   │   │   _pyxlsb.cpython-310.pyc
│   │   │   │   │   │   │   │   _util.cpython-310.pyc
│   │   │   │   │   │   │   │   _xlrd.cpython-310.pyc
│   │   │   │   │   │   │   │   _xlsxwriter.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── formats/
│   │   │   │   │   │   │   console.py
│   │   │   │   │   │   │   css.py
│   │   │   │   │   │   │   csvs.py
│   │   │   │   │   │   │   excel.py
│   │   │   │   │   │   │   format.py
│   │   │   │   │   │   │   html.py
│   │   │   │   │   │   │   info.py
│   │   │   │   │   │   │   printing.py
│   │   │   │   │   │   │   string.py
│   │   │   │   │   │   │   style.py
│   │   │   │   │   │   │   style_render.py
│   │   │   │   │   │   │   xml.py
│   │   │   │   │   │   │   _color_data.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── templates/
│   │   │   │   │   │   │   │   html.tpl
│   │   │   │   │   │   │   │   html_style.tpl
│   │   │   │   │   │   │   │   html_table.tpl
│   │   │   │   │   │   │   │   latex.tpl
│   │   │   │   │   │   │   │   latex_longtable.tpl
│   │   │   │   │   │   │   │   latex_table.tpl
│   │   │   │   │   │   │   │   string.tpl
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   console.cpython-310.pyc
│   │   │   │   │   │   │   │   css.cpython-310.pyc
│   │   │   │   │   │   │   │   csvs.cpython-310.pyc
│   │   │   │   │   │   │   │   excel.cpython-310.pyc
│   │   │   │   │   │   │   │   format.cpython-310.pyc
│   │   │   │   │   │   │   │   html.cpython-310.pyc
│   │   │   │   │   │   │   │   info.cpython-310.pyc
│   │   │   │   │   │   │   │   printing.cpython-310.pyc
│   │   │   │   │   │   │   │   string.cpython-310.pyc
│   │   │   │   │   │   │   │   style.cpython-310.pyc
│   │   │   │   │   │   │   │   style_render.cpython-310.pyc
│   │   │   │   │   │   │   │   xml.cpython-310.pyc
│   │   │   │   │   │   │   │   _color_data.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── json/
│   │   │   │   │   │   │   _json.py
│   │   │   │   │   │   │   _normalize.py
│   │   │   │   │   │   │   _table_schema.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _json.cpython-310.pyc
│   │   │   │   │   │   │   │   _normalize.cpython-310.pyc
│   │   │   │   │   │   │   │   _table_schema.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── parsers/
│   │   │   │   │   │   │   arrow_parser_wrapper.py
│   │   │   │   │   │   │   base_parser.py
│   │   │   │   │   │   │   c_parser_wrapper.py
│   │   │   │   │   │   │   python_parser.py
│   │   │   │   │   │   │   readers.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   arrow_parser_wrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   base_parser.cpython-310.pyc
│   │   │   │   │   │   │   │   c_parser_wrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   python_parser.cpython-310.pyc
│   │   │   │   │   │   │   │   readers.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── sas/
│   │   │   │   │   │   │   sas7bdat.py
│   │   │   │   │   │   │   sasreader.py
│   │   │   │   │   │   │   sas_constants.py
│   │   │   │   │   │   │   sas_xport.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   sas7bdat.cpython-310.pyc
│   │   │   │   │   │   │   │   sasreader.cpython-310.pyc
│   │   │   │   │   │   │   │   sas_constants.cpython-310.pyc
│   │   │   │   │   │   │   │   sas_xport.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   clipboards.cpython-310.pyc
│   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   feather_format.cpython-310.pyc
│   │   │   │   │   │   │   gbq.cpython-310.pyc
│   │   │   │   │   │   │   html.cpython-310.pyc
│   │   │   │   │   │   │   orc.cpython-310.pyc
│   │   │   │   │   │   │   parquet.cpython-310.pyc
│   │   │   │   │   │   │   pickle.cpython-310.pyc
│   │   │   │   │   │   │   pytables.cpython-310.pyc
│   │   │   │   │   │   │   spss.cpython-310.pyc
│   │   │   │   │   │   │   sql.cpython-310.pyc
│   │   │   │   │   │   │   stata.cpython-310.pyc
│   │   │   │   │   │   │   xml.cpython-310.pyc
│   │   │   │   │   │   │   _util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── plotting/
│   │   │   │   │   │   _core.py
│   │   │   │   │   │   _misc.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── _matplotlib/
│   │   │   │   │   │   │   boxplot.py
│   │   │   │   │   │   │   converter.py
│   │   │   │   │   │   │   core.py
│   │   │   │   │   │   │   groupby.py
│   │   │   │   │   │   │   hist.py
│   │   │   │   │   │   │   misc.py
│   │   │   │   │   │   │   style.py
│   │   │   │   │   │   │   timeseries.py
│   │   │   │   │   │   │   tools.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   boxplot.cpython-310.pyc
│   │   │   │   │   │   │   │   converter.cpython-310.pyc
│   │   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   │   groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   hist.cpython-310.pyc
│   │   │   │   │   │   │   │   misc.cpython-310.pyc
│   │   │   │   │   │   │   │   style.cpython-310.pyc
│   │   │   │   │   │   │   │   timeseries.cpython-310.pyc
│   │   │   │   │   │   │   │   tools.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _core.cpython-310.pyc
│   │   │   │   │   │   │   _misc.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   test_aggregation.py
│   │   │   │   │   │   test_algos.py
│   │   │   │   │   │   test_common.py
│   │   │   │   │   │   test_downstream.py
│   │   │   │   │   │   test_errors.py
│   │   │   │   │   │   test_expressions.py
│   │   │   │   │   │   test_flags.py
│   │   │   │   │   │   test_multilevel.py
│   │   │   │   │   │   test_nanops.py
│   │   │   │   │   │   test_optional_dependency.py
│   │   │   │   │   │   test_register_accessor.py
│   │   │   │   │   │   test_sorting.py
│   │   │   │   │   │   test_take.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── api/
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_types.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_types.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── apply/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   test_frame_apply.py
│   │   │   │   │   │   │   test_frame_apply_relabeling.py
│   │   │   │   │   │   │   test_frame_transform.py
│   │   │   │   │   │   │   test_invalid_arg.py
│   │   │   │   │   │   │   test_numba.py
│   │   │   │   │   │   │   test_series_apply.py
│   │   │   │   │   │   │   test_series_apply_relabeling.py
│   │   │   │   │   │   │   test_series_transform.py
│   │   │   │   │   │   │   test_str.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_frame_apply.cpython-310.pyc
│   │   │   │   │   │   │   │   test_frame_apply_relabeling.cpython-310.pyc
│   │   │   │   │   │   │   │   test_frame_transform.cpython-310.pyc
│   │   │   │   │   │   │   │   test_invalid_arg.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numba.cpython-310.pyc
│   │   │   │   │   │   │   │   test_series_apply.cpython-310.pyc
│   │   │   │   │   │   │   │   test_series_apply_relabeling.cpython-310.pyc
│   │   │   │   │   │   │   │   test_series_transform.cpython-310.pyc
│   │   │   │   │   │   │   │   test_str.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── arithmetic/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_array_ops.py
│   │   │   │   │   │   │   test_categorical.py
│   │   │   │   │   │   │   test_datetime64.py
│   │   │   │   │   │   │   test_interval.py
│   │   │   │   │   │   │   test_numeric.py
│   │   │   │   │   │   │   test_object.py
│   │   │   │   │   │   │   test_period.py
│   │   │   │   │   │   │   test_timedelta64.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   test_categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetime64.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interval.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   test_object.cpython-310.pyc
│   │   │   │   │   │   │   │   test_period.cpython-310.pyc
│   │   │   │   │   │   │   │   test_timedelta64.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── arrays/
│   │   │   │   │   │   │   masked_shared.py
│   │   │   │   │   │   │   test_array.py
│   │   │   │   │   │   │   test_datetimelike.py
│   │   │   │   │   │   │   test_datetimes.py
│   │   │   │   │   │   │   test_ndarray_backed.py
│   │   │   │   │   │   │   test_period.py
│   │   │   │   │   │   │   test_timedeltas.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── boolean/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_comparison.py
│   │   │   │   │   │   │   │   test_construction.py
│   │   │   │   │   │   │   │   test_function.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_logical.py
│   │   │   │   │   │   │   │   test_ops.py
│   │   │   │   │   │   │   │   test_reduction.py
│   │   │   │   │   │   │   │   test_repr.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_comparison.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_construction.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_function.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_logical.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reduction.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_repr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── categorical/
│   │   │   │   │   │   │   │   test_algos.py
│   │   │   │   │   │   │   │   test_analytics.py
│   │   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_dtypes.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_map.py
│   │   │   │   │   │   │   │   test_missing.py
│   │   │   │   │   │   │   │   test_operators.py
│   │   │   │   │   │   │   │   test_replace.py
│   │   │   │   │   │   │   │   test_repr.py
│   │   │   │   │   │   │   │   test_sorting.py
│   │   │   │   │   │   │   │   test_subclass.py
│   │   │   │   │   │   │   │   test_take.py
│   │   │   │   │   │   │   │   test_warnings.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_algos.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_analytics.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_map.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_missing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_operators.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_replace.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_repr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sorting.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_subclass.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_take.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_warnings.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── datetimes/
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_cumulative.py
│   │   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_cumulative.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── floating/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_comparison.py
│   │   │   │   │   │   │   │   test_concat.py
│   │   │   │   │   │   │   │   test_construction.py
│   │   │   │   │   │   │   │   test_contains.py
│   │   │   │   │   │   │   │   test_function.py
│   │   │   │   │   │   │   │   test_repr.py
│   │   │   │   │   │   │   │   test_to_numpy.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_comparison.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_concat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_construction.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_contains.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_function.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_repr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_numpy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── integer/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_comparison.py
│   │   │   │   │   │   │   │   test_concat.py
│   │   │   │   │   │   │   │   test_construction.py
│   │   │   │   │   │   │   │   test_dtypes.py
│   │   │   │   │   │   │   │   test_function.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_reduction.py
│   │   │   │   │   │   │   │   test_repr.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_comparison.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_concat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_construction.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_function.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reduction.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_repr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── interval/
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_interval.py
│   │   │   │   │   │   │   │   test_interval_pyarrow.py
│   │   │   │   │   │   │   │   test_overlaps.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interval.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interval_pyarrow.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_overlaps.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── masked/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_arrow_compat.py
│   │   │   │   │   │   │   │   test_function.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_arrow_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_function.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── numpy_/
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_numpy.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_numpy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── period/
│   │   │   │   │   │   │   │   test_arrow_compat.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arrow_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── sparse/
│   │   │   │   │   │   │   │   test_accessor.py
│   │   │   │   │   │   │   │   test_arithmetics.py
│   │   │   │   │   │   │   │   test_array.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_combine_concat.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_dtype.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_libsparse.py
│   │   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   │   test_unary.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_arithmetics.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_combine_concat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dtype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_libsparse.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_unary.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── string_/
│   │   │   │   │   │   │   │   test_concat.py
│   │   │   │   │   │   │   │   test_string.py
│   │   │   │   │   │   │   │   test_string_arrow.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_concat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_string.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_string_arrow.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── timedeltas/
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_cumulative.py
│   │   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_cumulative.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   masked_shared.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetimelike.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetimes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ndarray_backed.cpython-310.pyc
│   │   │   │   │   │   │   │   test_period.cpython-310.pyc
│   │   │   │   │   │   │   │   test_timedeltas.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── base/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   test_conversion.py
│   │   │   │   │   │   │   test_fillna.py
│   │   │   │   │   │   │   test_misc.py
│   │   │   │   │   │   │   test_transpose.py
│   │   │   │   │   │   │   test_unique.py
│   │   │   │   │   │   │   test_value_counts.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   test_conversion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   test_misc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_transpose.cpython-310.pyc
│   │   │   │   │   │   │   │   test_unique.cpython-310.pyc
│   │   │   │   │   │   │   │   test_value_counts.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── computation/
│   │   │   │   │   │   │   test_compat.py
│   │   │   │   │   │   │   test_eval.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   test_eval.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── config/
│   │   │   │   │   │   │   test_config.py
│   │   │   │   │   │   │   test_localization.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_config.cpython-310.pyc
│   │   │   │   │   │   │   │   test_localization.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── construction/
│   │   │   │   │   │   │   test_extract_array.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_extract_array.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── copy_view/
│   │   │   │   │   │   │   test_array.py
│   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   test_chained_assignment_deprecation.py
│   │   │   │   │   │   │   test_clip.py
│   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   test_core_functionalities.py
│   │   │   │   │   │   │   test_functions.py
│   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   test_internals.py
│   │   │   │   │   │   │   test_interp_fillna.py
│   │   │   │   │   │   │   test_methods.py
│   │   │   │   │   │   │   test_replace.py
│   │   │   │   │   │   │   test_setitem.py
│   │   │   │   │   │   │   test_util.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── index/
│   │   │   │   │   │   │   │   test_datetimeindex.py
│   │   │   │   │   │   │   │   test_index.py
│   │   │   │   │   │   │   │   test_periodindex.py
│   │   │   │   │   │   │   │   test_timedeltaindex.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_datetimeindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_periodindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timedeltaindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_array.cpython-310.pyc
│   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   test_chained_assignment_deprecation.cpython-310.pyc
│   │   │   │   │   │   │   │   test_clip.cpython-310.pyc
│   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   test_core_functionalities.cpython-310.pyc
│   │   │   │   │   │   │   │   test_functions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_internals.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interp_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   test_methods.cpython-310.pyc
│   │   │   │   │   │   │   │   test_replace.cpython-310.pyc
│   │   │   │   │   │   │   │   test_setitem.cpython-310.pyc
│   │   │   │   │   │   │   │   test_util.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── dtypes/
│   │   │   │   │   │   │   test_common.py
│   │   │   │   │   │   │   test_concat.py
│   │   │   │   │   │   │   test_dtypes.py
│   │   │   │   │   │   │   test_generic.py
│   │   │   │   │   │   │   test_inference.py
│   │   │   │   │   │   │   test_missing.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── cast/
│   │   │   │   │   │   │   │   test_can_hold_element.py
│   │   │   │   │   │   │   │   test_construct_from_scalar.py
│   │   │   │   │   │   │   │   test_construct_ndarray.py
│   │   │   │   │   │   │   │   test_construct_object_arr.py
│   │   │   │   │   │   │   │   test_dict_compat.py
│   │   │   │   │   │   │   │   test_downcast.py
│   │   │   │   │   │   │   │   test_find_common_type.py
│   │   │   │   │   │   │   │   test_infer_datetimelike.py
│   │   │   │   │   │   │   │   test_infer_dtype.py
│   │   │   │   │   │   │   │   test_maybe_box_native.py
│   │   │   │   │   │   │   │   test_promote.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_can_hold_element.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_construct_from_scalar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_construct_ndarray.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_construct_object_arr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dict_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_downcast.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_find_common_type.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_infer_datetimelike.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_infer_dtype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_maybe_box_native.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_promote.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_concat.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_generic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_inference.cpython-310.pyc
│   │   │   │   │   │   │   │   test_missing.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── extension/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_arrow.py
│   │   │   │   │   │   │   test_categorical.py
│   │   │   │   │   │   │   test_common.py
│   │   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   │   test_extension.py
│   │   │   │   │   │   │   test_interval.py
│   │   │   │   │   │   │   test_masked.py
│   │   │   │   │   │   │   test_numpy.py
│   │   │   │   │   │   │   test_period.py
│   │   │   │   │   │   │   test_sparse.py
│   │   │   │   │   │   │   test_string.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── array_with_attr/
│   │   │   │   │   │   │   │   array.py
│   │   │   │   │   │   │   │   test_array_with_attr.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_array_with_attr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── base/
│   │   │   │   │   │   │   │   accumulate.py
│   │   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   │   casting.py
│   │   │   │   │   │   │   │   constructors.py
│   │   │   │   │   │   │   │   dim2.py
│   │   │   │   │   │   │   │   dtype.py
│   │   │   │   │   │   │   │   getitem.py
│   │   │   │   │   │   │   │   groupby.py
│   │   │   │   │   │   │   │   index.py
│   │   │   │   │   │   │   │   interface.py
│   │   │   │   │   │   │   │   io.py
│   │   │   │   │   │   │   │   methods.py
│   │   │   │   │   │   │   │   missing.py
│   │   │   │   │   │   │   │   ops.py
│   │   │   │   │   │   │   │   printing.py
│   │   │   │   │   │   │   │   reduce.py
│   │   │   │   │   │   │   │   reshaping.py
│   │   │   │   │   │   │   │   setitem.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   accumulate.cpython-310.pyc
│   │   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   │   casting.cpython-310.pyc
│   │   │   │   │   │   │   │   │   constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   dim2.cpython-310.pyc
│   │   │   │   │   │   │   │   │   dtype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   getitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   │   index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   interface.cpython-310.pyc
│   │   │   │   │   │   │   │   │   io.cpython-310.pyc
│   │   │   │   │   │   │   │   │   methods.cpython-310.pyc
│   │   │   │   │   │   │   │   │   missing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   printing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   reduce.cpython-310.pyc
│   │   │   │   │   │   │   │   │   reshaping.cpython-310.pyc
│   │   │   │   │   │   │   │   │   setitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── date/
│   │   │   │   │   │   │   │   array.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── decimal/
│   │   │   │   │   │   │   │   array.py
│   │   │   │   │   │   │   │   test_decimal.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_decimal.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── json/
│   │   │   │   │   │   │   │   array.py
│   │   │   │   │   │   │   │   test_json.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_json.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── list/
│   │   │   │   │   │   │   │   array.py
│   │   │   │   │   │   │   │   test_list.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   array.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_list.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arrow.cpython-310.pyc
│   │   │   │   │   │   │   │   test_categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extension.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interval.cpython-310.pyc
│   │   │   │   │   │   │   │   test_masked.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numpy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_period.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sparse.cpython-310.pyc
│   │   │   │   │   │   │   │   test_string.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── frame/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_alter_axes.py
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   test_arrow_interface.py
│   │   │   │   │   │   │   test_block_internals.py
│   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   test_cumulative.py
│   │   │   │   │   │   │   test_iteration.py
│   │   │   │   │   │   │   test_logical_ops.py
│   │   │   │   │   │   │   test_nonunique_indexes.py
│   │   │   │   │   │   │   test_npfuncs.py
│   │   │   │   │   │   │   test_query_eval.py
│   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   test_repr.py
│   │   │   │   │   │   │   test_stack_unstack.py
│   │   │   │   │   │   │   test_subclass.py
│   │   │   │   │   │   │   test_ufunc.py
│   │   │   │   │   │   │   test_unary.py
│   │   │   │   │   │   │   test_validate.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── constructors/
│   │   │   │   │   │   │   │   test_from_dict.py
│   │   │   │   │   │   │   │   test_from_records.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_from_dict.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_from_records.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── indexing/
│   │   │   │   │   │   │   │   test_coercion.py
│   │   │   │   │   │   │   │   test_delitem.py
│   │   │   │   │   │   │   │   test_get.py
│   │   │   │   │   │   │   │   test_getitem.py
│   │   │   │   │   │   │   │   test_get_value.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_insert.py
│   │   │   │   │   │   │   │   test_mask.py
│   │   │   │   │   │   │   │   test_setitem.py
│   │   │   │   │   │   │   │   test_set_value.py
│   │   │   │   │   │   │   │   test_take.py
│   │   │   │   │   │   │   │   test_where.py
│   │   │   │   │   │   │   │   test_xs.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_coercion.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_delitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_get.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_getitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_get_value.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_insert.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_mask.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_set_value.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_take.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_where.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_xs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   test_add_prefix_suffix.py
│   │   │   │   │   │   │   │   test_align.py
│   │   │   │   │   │   │   │   test_asfreq.py
│   │   │   │   │   │   │   │   test_asof.py
│   │   │   │   │   │   │   │   test_assign.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_at_time.py
│   │   │   │   │   │   │   │   test_between_time.py
│   │   │   │   │   │   │   │   test_clip.py
│   │   │   │   │   │   │   │   test_combine.py
│   │   │   │   │   │   │   │   test_combine_first.py
│   │   │   │   │   │   │   │   test_compare.py
│   │   │   │   │   │   │   │   test_convert_dtypes.py
│   │   │   │   │   │   │   │   test_copy.py
│   │   │   │   │   │   │   │   test_count.py
│   │   │   │   │   │   │   │   test_cov_corr.py
│   │   │   │   │   │   │   │   test_describe.py
│   │   │   │   │   │   │   │   test_diff.py
│   │   │   │   │   │   │   │   test_dot.py
│   │   │   │   │   │   │   │   test_drop.py
│   │   │   │   │   │   │   │   test_droplevel.py
│   │   │   │   │   │   │   │   test_dropna.py
│   │   │   │   │   │   │   │   test_drop_duplicates.py
│   │   │   │   │   │   │   │   test_dtypes.py
│   │   │   │   │   │   │   │   test_duplicated.py
│   │   │   │   │   │   │   │   test_equals.py
│   │   │   │   │   │   │   │   test_explode.py
│   │   │   │   │   │   │   │   test_fillna.py
│   │   │   │   │   │   │   │   test_filter.py
│   │   │   │   │   │   │   │   test_first_and_last.py
│   │   │   │   │   │   │   │   test_first_valid_index.py
│   │   │   │   │   │   │   │   test_get_numeric_data.py
│   │   │   │   │   │   │   │   test_head_tail.py
│   │   │   │   │   │   │   │   test_infer_objects.py
│   │   │   │   │   │   │   │   test_info.py
│   │   │   │   │   │   │   │   test_interpolate.py
│   │   │   │   │   │   │   │   test_isetitem.py
│   │   │   │   │   │   │   │   test_isin.py
│   │   │   │   │   │   │   │   test_is_homogeneous_dtype.py
│   │   │   │   │   │   │   │   test_iterrows.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_map.py
│   │   │   │   │   │   │   │   test_matmul.py
│   │   │   │   │   │   │   │   test_nlargest.py
│   │   │   │   │   │   │   │   test_pct_change.py
│   │   │   │   │   │   │   │   test_pipe.py
│   │   │   │   │   │   │   │   test_pop.py
│   │   │   │   │   │   │   │   test_quantile.py
│   │   │   │   │   │   │   │   test_rank.py
│   │   │   │   │   │   │   │   test_reindex.py
│   │   │   │   │   │   │   │   test_reindex_like.py
│   │   │   │   │   │   │   │   test_rename.py
│   │   │   │   │   │   │   │   test_rename_axis.py
│   │   │   │   │   │   │   │   test_reorder_levels.py
│   │   │   │   │   │   │   │   test_replace.py
│   │   │   │   │   │   │   │   test_reset_index.py
│   │   │   │   │   │   │   │   test_round.py
│   │   │   │   │   │   │   │   test_sample.py
│   │   │   │   │   │   │   │   test_select_dtypes.py
│   │   │   │   │   │   │   │   test_set_axis.py
│   │   │   │   │   │   │   │   test_set_index.py
│   │   │   │   │   │   │   │   test_shift.py
│   │   │   │   │   │   │   │   test_size.py
│   │   │   │   │   │   │   │   test_sort_index.py
│   │   │   │   │   │   │   │   test_sort_values.py
│   │   │   │   │   │   │   │   test_swapaxes.py
│   │   │   │   │   │   │   │   test_swaplevel.py
│   │   │   │   │   │   │   │   test_to_csv.py
│   │   │   │   │   │   │   │   test_to_dict.py
│   │   │   │   │   │   │   │   test_to_dict_of_blocks.py
│   │   │   │   │   │   │   │   test_to_numpy.py
│   │   │   │   │   │   │   │   test_to_period.py
│   │   │   │   │   │   │   │   test_to_records.py
│   │   │   │   │   │   │   │   test_to_timestamp.py
│   │   │   │   │   │   │   │   test_transpose.py
│   │   │   │   │   │   │   │   test_truncate.py
│   │   │   │   │   │   │   │   test_tz_convert.py
│   │   │   │   │   │   │   │   test_tz_localize.py
│   │   │   │   │   │   │   │   test_update.py
│   │   │   │   │   │   │   │   test_values.py
│   │   │   │   │   │   │   │   test_value_counts.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_add_prefix_suffix.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_align.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_asfreq.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_asof.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_assign.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_at_time.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_between_time.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_clip.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_combine.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_combine_first.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_compare.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_convert_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_copy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_count.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_cov_corr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_describe.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_diff.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dot.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_drop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_droplevel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dropna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_drop_duplicates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_duplicated.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_equals.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_explode.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_filter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_first_and_last.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_first_valid_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_get_numeric_data.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_head_tail.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_infer_objects.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_info.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interpolate.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_isetitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_isin.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_is_homogeneous_dtype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_iterrows.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_map.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_matmul.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_nlargest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pct_change.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pipe.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_quantile.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rank.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reindex_like.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rename.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rename_axis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reorder_levels.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_replace.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reset_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_round.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sample.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_select_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_set_axis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_set_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_shift.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_size.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sort_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sort_values.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_swapaxes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_swaplevel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_csv.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_dict.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_dict_of_blocks.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_numpy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_period.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_records.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_timestamp.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_transpose.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_truncate.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_tz_convert.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_tz_localize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_update.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_values.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_value_counts.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_alter_axes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arrow_interface.cpython-310.pyc
│   │   │   │   │   │   │   │   test_block_internals.cpython-310.pyc
│   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cumulative.cpython-310.pyc
│   │   │   │   │   │   │   │   test_iteration.cpython-310.pyc
│   │   │   │   │   │   │   │   test_logical_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   test_nonunique_indexes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_npfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_query_eval.cpython-310.pyc
│   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_repr.cpython-310.pyc
│   │   │   │   │   │   │   │   test_stack_unstack.cpython-310.pyc
│   │   │   │   │   │   │   │   test_subclass.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ufunc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_unary.cpython-310.pyc
│   │   │   │   │   │   │   │   test_validate.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── generic/
│   │   │   │   │   │   │   test_duplicate_labels.py
│   │   │   │   │   │   │   test_finalize.py
│   │   │   │   │   │   │   test_frame.py
│   │   │   │   │   │   │   test_generic.py
│   │   │   │   │   │   │   test_label_or_level_utils.py
│   │   │   │   │   │   │   test_series.py
│   │   │   │   │   │   │   test_to_xarray.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_duplicate_labels.cpython-310.pyc
│   │   │   │   │   │   │   │   test_finalize.cpython-310.pyc
│   │   │   │   │   │   │   │   test_frame.cpython-310.pyc
│   │   │   │   │   │   │   │   test_generic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_label_or_level_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   test_series.cpython-310.pyc
│   │   │   │   │   │   │   │   test_to_xarray.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── groupby/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_all_methods.py
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_apply.py
│   │   │   │   │   │   │   test_apply_mutate.py
│   │   │   │   │   │   │   test_bin_groupby.py
│   │   │   │   │   │   │   test_categorical.py
│   │   │   │   │   │   │   test_counting.py
│   │   │   │   │   │   │   test_cumulative.py
│   │   │   │   │   │   │   test_filters.py
│   │   │   │   │   │   │   test_groupby.py
│   │   │   │   │   │   │   test_groupby_dropna.py
│   │   │   │   │   │   │   test_groupby_subclass.py
│   │   │   │   │   │   │   test_grouping.py
│   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   test_index_as_string.py
│   │   │   │   │   │   │   test_libgroupby.py
│   │   │   │   │   │   │   test_missing.py
│   │   │   │   │   │   │   test_numba.py
│   │   │   │   │   │   │   test_numeric_only.py
│   │   │   │   │   │   │   test_pipe.py
│   │   │   │   │   │   │   test_raises.py
│   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   test_timegrouper.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── aggregate/
│   │   │   │   │   │   │   │   test_aggregate.py
│   │   │   │   │   │   │   │   test_cython.py
│   │   │   │   │   │   │   │   test_numba.py
│   │   │   │   │   │   │   │   test_other.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_aggregate.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_cython.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_numba.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_other.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   test_corrwith.py
│   │   │   │   │   │   │   │   test_describe.py
│   │   │   │   │   │   │   │   test_groupby_shift_diff.py
│   │   │   │   │   │   │   │   test_is_monotonic.py
│   │   │   │   │   │   │   │   test_nlargest_nsmallest.py
│   │   │   │   │   │   │   │   test_nth.py
│   │   │   │   │   │   │   │   test_quantile.py
│   │   │   │   │   │   │   │   test_rank.py
│   │   │   │   │   │   │   │   test_sample.py
│   │   │   │   │   │   │   │   test_size.py
│   │   │   │   │   │   │   │   test_skew.py
│   │   │   │   │   │   │   │   test_value_counts.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_corrwith.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_describe.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_groupby_shift_diff.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_is_monotonic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_nlargest_nsmallest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_nth.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_quantile.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rank.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sample.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_size.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_skew.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_value_counts.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── transform/
│   │   │   │   │   │   │   │   test_numba.py
│   │   │   │   │   │   │   │   test_transform.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_numba.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_transform.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_all_methods.cpython-310.pyc
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_apply.cpython-310.pyc
│   │   │   │   │   │   │   │   test_apply_mutate.cpython-310.pyc
│   │   │   │   │   │   │   │   test_bin_groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   test_categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   test_counting.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cumulative.cpython-310.pyc
│   │   │   │   │   │   │   │   test_filters.cpython-310.pyc
│   │   │   │   │   │   │   │   test_groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   test_groupby_dropna.cpython-310.pyc
│   │   │   │   │   │   │   │   test_groupby_subclass.cpython-310.pyc
│   │   │   │   │   │   │   │   test_grouping.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_index_as_string.cpython-310.pyc
│   │   │   │   │   │   │   │   test_libgroupby.cpython-310.pyc
│   │   │   │   │   │   │   │   test_missing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numba.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numeric_only.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pipe.cpython-310.pyc
│   │   │   │   │   │   │   │   test_raises.cpython-310.pyc
│   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_timegrouper.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── indexes/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_any_index.py
│   │   │   │   │   │   │   test_base.py
│   │   │   │   │   │   │   test_common.py
│   │   │   │   │   │   │   test_datetimelike.py
│   │   │   │   │   │   │   test_engines.py
│   │   │   │   │   │   │   test_frozen.py
│   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   test_index_new.py
│   │   │   │   │   │   │   test_numpy_compat.py
│   │   │   │   │   │   │   test_old_base.py
│   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   test_subclass.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── base_class/
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   │   │   test_reshape.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   test_where.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reshape.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_where.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── categorical/
│   │   │   │   │   │   │   │   test_append.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_category.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_equals.py
│   │   │   │   │   │   │   │   test_fillna.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_map.py
│   │   │   │   │   │   │   │   test_reindex.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_append.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_category.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_equals.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_map.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── datetimelike_/
│   │   │   │   │   │   │   │   test_drop_duplicates.py
│   │   │   │   │   │   │   │   test_equals.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_is_monotonic.py
│   │   │   │   │   │   │   │   test_nat.py
│   │   │   │   │   │   │   │   test_sort_values.py
│   │   │   │   │   │   │   │   test_value_counts.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_drop_duplicates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_equals.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_is_monotonic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_nat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sort_values.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_value_counts.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── datetimes/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   │   │   test_date_range.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_freq_attr.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_iter.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_npfuncs.py
│   │   │   │   │   │   │   │   test_ops.py
│   │   │   │   │   │   │   │   test_partial_slicing.py
│   │   │   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   │   │   test_reindex.py
│   │   │   │   │   │   │   │   test_scalar_compat.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   test_timezones.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   │   test_asof.py
│   │   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   │   test_delete.py
│   │   │   │   │   │   │   │   │   test_factorize.py
│   │   │   │   │   │   │   │   │   test_fillna.py
│   │   │   │   │   │   │   │   │   test_insert.py
│   │   │   │   │   │   │   │   │   test_isocalendar.py
│   │   │   │   │   │   │   │   │   test_map.py
│   │   │   │   │   │   │   │   │   test_normalize.py
│   │   │   │   │   │   │   │   │   test_repeat.py
│   │   │   │   │   │   │   │   │   test_resolution.py
│   │   │   │   │   │   │   │   │   test_round.py
│   │   │   │   │   │   │   │   │   test_shift.py
│   │   │   │   │   │   │   │   │   test_snap.py
│   │   │   │   │   │   │   │   │   test_to_frame.py
│   │   │   │   │   │   │   │   │   test_to_julian_date.py
│   │   │   │   │   │   │   │   │   test_to_period.py
│   │   │   │   │   │   │   │   │   test_to_pydatetime.py
│   │   │   │   │   │   │   │   │   test_to_series.py
│   │   │   │   │   │   │   │   │   test_tz_convert.py
│   │   │   │   │   │   │   │   │   test_tz_localize.py
│   │   │   │   │   │   │   │   │   test_unique.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_asof.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_delete.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_factorize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_insert.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_isocalendar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_map.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_normalize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_repeat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_resolution.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_round.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_shift.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_snap.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_frame.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_julian_date.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_period.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_pydatetime.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_series.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_tz_convert.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_tz_localize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_unique.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_date_range.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_freq_attr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_iter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_npfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_partial_slicing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_scalar_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timezones.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── interval/
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_equals.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_interval.py
│   │   │   │   │   │   │   │   test_interval_range.py
│   │   │   │   │   │   │   │   test_interval_tree.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_equals.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interval.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interval_range.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interval_tree.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── multi/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_analytics.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_compat.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_conversion.py
│   │   │   │   │   │   │   │   test_copy.py
│   │   │   │   │   │   │   │   test_drop.py
│   │   │   │   │   │   │   │   test_duplicates.py
│   │   │   │   │   │   │   │   test_equivalence.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_get_level_values.py
│   │   │   │   │   │   │   │   test_get_set.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_integrity.py
│   │   │   │   │   │   │   │   test_isin.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_lexsort.py
│   │   │   │   │   │   │   │   test_missing.py
│   │   │   │   │   │   │   │   test_monotonic.py
│   │   │   │   │   │   │   │   test_names.py
│   │   │   │   │   │   │   │   test_partial_indexing.py
│   │   │   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   │   │   test_reindex.py
│   │   │   │   │   │   │   │   test_reshape.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   test_sorting.py
│   │   │   │   │   │   │   │   test_take.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_analytics.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_conversion.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_copy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_drop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_duplicates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_equivalence.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_get_level_values.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_get_set.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_integrity.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_isin.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_lexsort.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_missing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_monotonic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_names.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_partial_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reshape.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sorting.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_take.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── numeric/
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_numeric.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── object/
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── period/
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_freq_attr.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_monotonic.py
│   │   │   │   │   │   │   │   test_partial_slicing.py
│   │   │   │   │   │   │   │   test_period.py
│   │   │   │   │   │   │   │   test_period_range.py
│   │   │   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   │   │   test_resolution.py
│   │   │   │   │   │   │   │   test_scalar_compat.py
│   │   │   │   │   │   │   │   test_searchsorted.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   test_tools.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   │   test_asfreq.py
│   │   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   │   test_factorize.py
│   │   │   │   │   │   │   │   │   test_fillna.py
│   │   │   │   │   │   │   │   │   test_insert.py
│   │   │   │   │   │   │   │   │   test_is_full.py
│   │   │   │   │   │   │   │   │   test_repeat.py
│   │   │   │   │   │   │   │   │   test_shift.py
│   │   │   │   │   │   │   │   │   test_to_timestamp.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_asfreq.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_factorize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_insert.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_is_full.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_repeat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_shift.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_timestamp.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_freq_attr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_monotonic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_partial_slicing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_period.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_period_range.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_resolution.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_scalar_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_searchsorted.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_tools.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── ranges/
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_range.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_range.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── string/
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── timedeltas/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_delete.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_freq_attr.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_ops.py
│   │   │   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   │   │   test_scalar_compat.py
│   │   │   │   │   │   │   │   test_searchsorted.py
│   │   │   │   │   │   │   │   test_setops.py
│   │   │   │   │   │   │   │   test_timedelta.py
│   │   │   │   │   │   │   │   test_timedelta_range.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   │   test_factorize.py
│   │   │   │   │   │   │   │   │   test_fillna.py
│   │   │   │   │   │   │   │   │   test_insert.py
│   │   │   │   │   │   │   │   │   test_repeat.py
│   │   │   │   │   │   │   │   │   test_shift.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_factorize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_insert.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_repeat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_shift.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_delete.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_freq_attr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_scalar_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_searchsorted.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timedelta.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timedelta_range.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_any_index.cpython-310.pyc
│   │   │   │   │   │   │   │   test_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetimelike.cpython-310.pyc
│   │   │   │   │   │   │   │   test_engines.cpython-310.pyc
│   │   │   │   │   │   │   │   test_frozen.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_index_new.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numpy_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   test_old_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_setops.cpython-310.pyc
│   │   │   │   │   │   │   │   test_subclass.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── indexing/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_at.py
│   │   │   │   │   │   │   test_categorical.py
│   │   │   │   │   │   │   test_chaining_and_caching.py
│   │   │   │   │   │   │   test_check_indexer.py
│   │   │   │   │   │   │   test_coercion.py
│   │   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   │   test_floats.py
│   │   │   │   │   │   │   test_iat.py
│   │   │   │   │   │   │   test_iloc.py
│   │   │   │   │   │   │   test_indexers.py
│   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   test_loc.py
│   │   │   │   │   │   │   test_na_indexing.py
│   │   │   │   │   │   │   test_partial.py
│   │   │   │   │   │   │   test_scalar.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── interval/
│   │   │   │   │   │   │   │   test_interval.py
│   │   │   │   │   │   │   │   test_interval_new.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_interval.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interval_new.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── multiindex/
│   │   │   │   │   │   │   │   test_chaining_and_caching.py
│   │   │   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   │   │   test_getitem.py
│   │   │   │   │   │   │   │   test_iloc.py
│   │   │   │   │   │   │   │   test_indexing_slow.py
│   │   │   │   │   │   │   │   test_loc.py
│   │   │   │   │   │   │   │   test_multiindex.py
│   │   │   │   │   │   │   │   test_partial.py
│   │   │   │   │   │   │   │   test_setitem.py
│   │   │   │   │   │   │   │   test_slice.py
│   │   │   │   │   │   │   │   test_sorted.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_chaining_and_caching.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_getitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_iloc.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing_slow.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_loc.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_multiindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_partial.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_slice.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sorted.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_at.cpython-310.pyc
│   │   │   │   │   │   │   │   test_categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   test_chaining_and_caching.cpython-310.pyc
│   │   │   │   │   │   │   │   test_check_indexer.cpython-310.pyc
│   │   │   │   │   │   │   │   test_coercion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_floats.cpython-310.pyc
│   │   │   │   │   │   │   │   test_iat.cpython-310.pyc
│   │   │   │   │   │   │   │   test_iloc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexers.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_loc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_na_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_partial.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scalar.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── interchange/
│   │   │   │   │   │   │   test_impl.py
│   │   │   │   │   │   │   test_spec_conformance.py
│   │   │   │   │   │   │   test_utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_impl.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spec_conformance.cpython-310.pyc
│   │   │   │   │   │   │   │   test_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── internals/
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_internals.py
│   │   │   │   │   │   │   test_managers.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_internals.cpython-310.pyc
│   │   │   │   │   │   │   │   test_managers.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── io/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   generate_legacy_storage_files.py
│   │   │   │   │   │   │   test_clipboard.py
│   │   │   │   │   │   │   test_common.py
│   │   │   │   │   │   │   test_compression.py
│   │   │   │   │   │   │   test_feather.py
│   │   │   │   │   │   │   test_fsspec.py
│   │   │   │   │   │   │   test_gbq.py
│   │   │   │   │   │   │   test_gcs.py
│   │   │   │   │   │   │   test_html.py
│   │   │   │   │   │   │   test_http_headers.py
│   │   │   │   │   │   │   test_orc.py
│   │   │   │   │   │   │   test_parquet.py
│   │   │   │   │   │   │   test_pickle.py
│   │   │   │   │   │   │   test_s3.py
│   │   │   │   │   │   │   test_spss.py
│   │   │   │   │   │   │   test_sql.py
│   │   │   │   │   │   │   test_stata.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── excel/
│   │   │   │   │   │   │   │   test_odf.py
│   │   │   │   │   │   │   │   test_odswriter.py
│   │   │   │   │   │   │   │   test_openpyxl.py
│   │   │   │   │   │   │   │   test_readers.py
│   │   │   │   │   │   │   │   test_style.py
│   │   │   │   │   │   │   │   test_writers.py
│   │   │   │   │   │   │   │   test_xlrd.py
│   │   │   │   │   │   │   │   test_xlsxwriter.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_odf.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_odswriter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_openpyxl.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_readers.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_style.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_writers.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_xlrd.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_xlsxwriter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── formats/
│   │   │   │   │   │   │   │   test_console.py
│   │   │   │   │   │   │   │   test_css.py
│   │   │   │   │   │   │   │   test_eng_formatting.py
│   │   │   │   │   │   │   │   test_format.py
│   │   │   │   │   │   │   │   test_ipython_compat.py
│   │   │   │   │   │   │   │   test_printing.py
│   │   │   │   │   │   │   │   test_to_csv.py
│   │   │   │   │   │   │   │   test_to_excel.py
│   │   │   │   │   │   │   │   test_to_html.py
│   │   │   │   │   │   │   │   test_to_latex.py
│   │   │   │   │   │   │   │   test_to_markdown.py
│   │   │   │   │   │   │   │   test_to_string.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── style/
│   │   │   │   │   │   │   │   │   test_bar.py
│   │   │   │   │   │   │   │   │   test_exceptions.py
│   │   │   │   │   │   │   │   │   test_format.py
│   │   │   │   │   │   │   │   │   test_highlight.py
│   │   │   │   │   │   │   │   │   test_html.py
│   │   │   │   │   │   │   │   │   test_matplotlib.py
│   │   │   │   │   │   │   │   │   test_non_unique.py
│   │   │   │   │   │   │   │   │   test_style.py
│   │   │   │   │   │   │   │   │   test_tooltip.py
│   │   │   │   │   │   │   │   │   test_to_latex.py
│   │   │   │   │   │   │   │   │   test_to_string.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_bar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_format.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_highlight.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_html.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_matplotlib.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_non_unique.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_style.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_tooltip.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_latex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_string.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_console.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_css.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_eng_formatting.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_format.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_ipython_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_printing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_csv.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_excel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_html.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_latex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_markdown.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_string.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── json/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_compression.py
│   │   │   │   │   │   │   │   test_deprecated_kwargs.py
│   │   │   │   │   │   │   │   test_json_table_schema.py
│   │   │   │   │   │   │   │   test_json_table_schema_ext_dtype.py
│   │   │   │   │   │   │   │   test_normalize.py
│   │   │   │   │   │   │   │   test_pandas.py
│   │   │   │   │   │   │   │   test_readlines.py
│   │   │   │   │   │   │   │   test_ujson.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_compression.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_deprecated_kwargs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_json_table_schema.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_json_table_schema_ext_dtype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_normalize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pandas.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_readlines.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_ujson.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── parser/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_comment.py
│   │   │   │   │   │   │   │   test_compression.py
│   │   │   │   │   │   │   │   test_concatenate_chunks.py
│   │   │   │   │   │   │   │   test_converters.py
│   │   │   │   │   │   │   │   test_c_parser_only.py
│   │   │   │   │   │   │   │   test_dialect.py
│   │   │   │   │   │   │   │   test_encoding.py
│   │   │   │   │   │   │   │   test_header.py
│   │   │   │   │   │   │   │   test_index_col.py
│   │   │   │   │   │   │   │   test_mangle_dupes.py
│   │   │   │   │   │   │   │   test_multi_thread.py
│   │   │   │   │   │   │   │   test_na_values.py
│   │   │   │   │   │   │   │   test_network.py
│   │   │   │   │   │   │   │   test_parse_dates.py
│   │   │   │   │   │   │   │   test_python_parser_only.py
│   │   │   │   │   │   │   │   test_quoting.py
│   │   │   │   │   │   │   │   test_read_fwf.py
│   │   │   │   │   │   │   │   test_skiprows.py
│   │   │   │   │   │   │   │   test_textreader.py
│   │   │   │   │   │   │   │   test_unsupported.py
│   │   │   │   │   │   │   │   test_upcast.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── common/
│   │   │   │   │   │   │   │   │   test_chunksize.py
│   │   │   │   │   │   │   │   │   test_common_basic.py
│   │   │   │   │   │   │   │   │   test_data_list.py
│   │   │   │   │   │   │   │   │   test_decimal.py
│   │   │   │   │   │   │   │   │   test_file_buffer_url.py
│   │   │   │   │   │   │   │   │   test_float.py
│   │   │   │   │   │   │   │   │   test_index.py
│   │   │   │   │   │   │   │   │   test_inf.py
│   │   │   │   │   │   │   │   │   test_ints.py
│   │   │   │   │   │   │   │   │   test_iterator.py
│   │   │   │   │   │   │   │   │   test_read_errors.py
│   │   │   │   │   │   │   │   │   test_verbose.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_chunksize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_common_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_data_list.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_decimal.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_file_buffer_url.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_float.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_inf.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_ints.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_iterator.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_read_errors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_verbose.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── dtypes/
│   │   │   │   │   │   │   │   │   test_categorical.py
│   │   │   │   │   │   │   │   │   test_dtypes_basic.py
│   │   │   │   │   │   │   │   │   test_empty.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_dtypes_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_empty.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── usecols/
│   │   │   │   │   │   │   │   │   test_parse_dates.py
│   │   │   │   │   │   │   │   │   test_strings.py
│   │   │   │   │   │   │   │   │   test_usecols_basic.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_parse_dates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_strings.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_usecols_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_comment.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_compression.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_concatenate_chunks.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_converters.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_c_parser_only.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dialect.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_encoding.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_header.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_index_col.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_mangle_dupes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_multi_thread.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_na_values.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_network.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_parse_dates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_python_parser_only.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_quoting.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_read_fwf.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_skiprows.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_textreader.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_unsupported.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_upcast.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── pytables/
│   │   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_append.py
│   │   │   │   │   │   │   │   test_categorical.py
│   │   │   │   │   │   │   │   test_compat.py
│   │   │   │   │   │   │   │   test_complex.py
│   │   │   │   │   │   │   │   test_errors.py
│   │   │   │   │   │   │   │   test_file_handling.py
│   │   │   │   │   │   │   │   test_keys.py
│   │   │   │   │   │   │   │   test_put.py
│   │   │   │   │   │   │   │   test_pytables_missing.py
│   │   │   │   │   │   │   │   test_read.py
│   │   │   │   │   │   │   │   test_retain_attributes.py
│   │   │   │   │   │   │   │   test_round_trip.py
│   │   │   │   │   │   │   │   test_select.py
│   │   │   │   │   │   │   │   test_store.py
│   │   │   │   │   │   │   │   test_subclass.py
│   │   │   │   │   │   │   │   test_timezones.py
│   │   │   │   │   │   │   │   test_time_series.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_append.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_complex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_errors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_file_handling.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_keys.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_put.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pytables_missing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_read.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_retain_attributes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_round_trip.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_select.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_store.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_subclass.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timezones.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_time_series.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── sas/
│   │   │   │   │   │   │   │   test_byteswap.py
│   │   │   │   │   │   │   │   test_sas.py
│   │   │   │   │   │   │   │   test_sas7bdat.py
│   │   │   │   │   │   │   │   test_xport.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_byteswap.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sas.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sas7bdat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_xport.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── xml/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_to_xml.py
│   │   │   │   │   │   │   │   test_xml.py
│   │   │   │   │   │   │   │   test_xml_dtypes.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_xml.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_xml.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_xml_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   generate_legacy_storage_files.cpython-310.pyc
│   │   │   │   │   │   │   │   test_clipboard.cpython-310.pyc
│   │   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_compression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_feather.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fsspec.cpython-310.pyc
│   │   │   │   │   │   │   │   test_gbq.cpython-310.pyc
│   │   │   │   │   │   │   │   test_gcs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_html.cpython-310.pyc
│   │   │   │   │   │   │   │   test_http_headers.cpython-310.pyc
│   │   │   │   │   │   │   │   test_orc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_parquet.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pickle.cpython-310.pyc
│   │   │   │   │   │   │   │   test_s3.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spss.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sql.cpython-310.pyc
│   │   │   │   │   │   │   │   test_stata.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── libs/
│   │   │   │   │   │   │   test_hashtable.py
│   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   test_lib.py
│   │   │   │   │   │   │   test_libalgos.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_hashtable.cpython-310.pyc
│   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   test_lib.cpython-310.pyc
│   │   │   │   │   │   │   │   test_libalgos.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── plotting/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_backend.py
│   │   │   │   │   │   │   test_boxplot_method.py
│   │   │   │   │   │   │   test_common.py
│   │   │   │   │   │   │   test_converter.py
│   │   │   │   │   │   │   test_datetimelike.py
│   │   │   │   │   │   │   test_groupby.py
│   │   │   │   │   │   │   test_hist_method.py
│   │   │   │   │   │   │   test_misc.py
│   │   │   │   │   │   │   test_series.py
│   │   │   │   │   │   │   test_style.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── frame/
│   │   │   │   │   │   │   │   test_frame.py
│   │   │   │   │   │   │   │   test_frame_color.py
│   │   │   │   │   │   │   │   test_frame_groupby.py
│   │   │   │   │   │   │   │   test_frame_legend.py
│   │   │   │   │   │   │   │   test_frame_subplots.py
│   │   │   │   │   │   │   │   test_hist_box_by.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_frame.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_frame_color.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_frame_groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_frame_legend.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_frame_subplots.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_hist_box_by.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_backend.cpython-310.pyc
│   │   │   │   │   │   │   │   test_boxplot_method.cpython-310.pyc
│   │   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_converter.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetimelike.cpython-310.pyc
│   │   │   │   │   │   │   │   test_groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hist_method.cpython-310.pyc
│   │   │   │   │   │   │   │   test_misc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_series.cpython-310.pyc
│   │   │   │   │   │   │   │   test_style.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── reductions/
│   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   test_stat_reductions.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_stat_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── resample/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_base.py
│   │   │   │   │   │   │   test_datetime_index.py
│   │   │   │   │   │   │   test_period_index.py
│   │   │   │   │   │   │   test_resampler_grouper.py
│   │   │   │   │   │   │   test_resample_api.py
│   │   │   │   │   │   │   test_timedelta.py
│   │   │   │   │   │   │   test_time_grouper.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetime_index.cpython-310.pyc
│   │   │   │   │   │   │   │   test_period_index.cpython-310.pyc
│   │   │   │   │   │   │   │   test_resampler_grouper.cpython-310.pyc
│   │   │   │   │   │   │   │   test_resample_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_timedelta.cpython-310.pyc
│   │   │   │   │   │   │   │   test_time_grouper.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── reshape/
│   │   │   │   │   │   │   test_crosstab.py
│   │   │   │   │   │   │   test_cut.py
│   │   │   │   │   │   │   test_from_dummies.py
│   │   │   │   │   │   │   test_get_dummies.py
│   │   │   │   │   │   │   test_melt.py
│   │   │   │   │   │   │   test_pivot.py
│   │   │   │   │   │   │   test_pivot_multilevel.py
│   │   │   │   │   │   │   test_qcut.py
│   │   │   │   │   │   │   test_union_categoricals.py
│   │   │   │   │   │   │   test_util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── concat/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_append.py
│   │   │   │   │   │   │   │   test_append_common.py
│   │   │   │   │   │   │   │   test_categorical.py
│   │   │   │   │   │   │   │   test_concat.py
│   │   │   │   │   │   │   │   test_dataframe.py
│   │   │   │   │   │   │   │   test_datetimes.py
│   │   │   │   │   │   │   │   test_empty.py
│   │   │   │   │   │   │   │   test_index.py
│   │   │   │   │   │   │   │   test_invalid.py
│   │   │   │   │   │   │   │   test_series.py
│   │   │   │   │   │   │   │   test_sort.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_append.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_append_common.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_categorical.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_concat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dataframe.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_datetimes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_empty.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_invalid.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_series.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sort.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── merge/
│   │   │   │   │   │   │   │   test_join.py
│   │   │   │   │   │   │   │   test_merge.py
│   │   │   │   │   │   │   │   test_merge_asof.py
│   │   │   │   │   │   │   │   test_merge_cross.py
│   │   │   │   │   │   │   │   test_merge_index_as_string.py
│   │   │   │   │   │   │   │   test_merge_ordered.py
│   │   │   │   │   │   │   │   test_multi.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_join.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_merge.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_merge_asof.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_merge_cross.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_merge_index_as_string.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_merge_ordered.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_multi.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_crosstab.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cut.cpython-310.pyc
│   │   │   │   │   │   │   │   test_from_dummies.cpython-310.pyc
│   │   │   │   │   │   │   │   test_get_dummies.cpython-310.pyc
│   │   │   │   │   │   │   │   test_melt.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pivot.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pivot_multilevel.cpython-310.pyc
│   │   │   │   │   │   │   │   test_qcut.cpython-310.pyc
│   │   │   │   │   │   │   │   test_union_categoricals.cpython-310.pyc
│   │   │   │   │   │   │   │   test_util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scalar/
│   │   │   │   │   │   │   test_nat.py
│   │   │   │   │   │   │   test_na_scalar.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── interval/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_contains.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_interval.py
│   │   │   │   │   │   │   │   test_overlaps.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_contains.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interval.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_overlaps.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── period/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_asfreq.py
│   │   │   │   │   │   │   │   test_period.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_asfreq.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_period.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── timedelta/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_timedelta.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   │   test_as_unit.py
│   │   │   │   │   │   │   │   │   test_round.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_as_unit.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_round.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timedelta.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── timestamp/
│   │   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   │   test_comparisons.py
│   │   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   │   test_timestamp.py
│   │   │   │   │   │   │   │   test_timezones.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   │   test_as_unit.py
│   │   │   │   │   │   │   │   │   test_normalize.py
│   │   │   │   │   │   │   │   │   test_replace.py
│   │   │   │   │   │   │   │   │   test_round.py
│   │   │   │   │   │   │   │   │   test_timestamp_method.py
│   │   │   │   │   │   │   │   │   test_to_julian_date.py
│   │   │   │   │   │   │   │   │   test_to_pydatetime.py
│   │   │   │   │   │   │   │   │   test_tz_convert.py
│   │   │   │   │   │   │   │   │   test_tz_localize.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_as_unit.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_normalize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_replace.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_round.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_timestamp_method.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_julian_date.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_to_pydatetime.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_tz_convert.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_tz_localize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_comparisons.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timestamp.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_timezones.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_nat.cpython-310.pyc
│   │   │   │   │   │   │   │   test_na_scalar.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── series/
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_arithmetic.py
│   │   │   │   │   │   │   test_constructors.py
│   │   │   │   │   │   │   test_cumulative.py
│   │   │   │   │   │   │   test_formats.py
│   │   │   │   │   │   │   test_iteration.py
│   │   │   │   │   │   │   test_logical_ops.py
│   │   │   │   │   │   │   test_missing.py
│   │   │   │   │   │   │   test_npfuncs.py
│   │   │   │   │   │   │   test_reductions.py
│   │   │   │   │   │   │   test_subclass.py
│   │   │   │   │   │   │   test_ufunc.py
│   │   │   │   │   │   │   test_unary.py
│   │   │   │   │   │   │   test_validate.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── accessors/
│   │   │   │   │   │   │   │   test_cat_accessor.py
│   │   │   │   │   │   │   │   test_dt_accessor.py
│   │   │   │   │   │   │   │   test_list_accessor.py
│   │   │   │   │   │   │   │   test_sparse_accessor.py
│   │   │   │   │   │   │   │   test_struct_accessor.py
│   │   │   │   │   │   │   │   test_str_accessor.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_cat_accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dt_accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_list_accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sparse_accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_struct_accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_str_accessor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── indexing/
│   │   │   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   │   │   test_delitem.py
│   │   │   │   │   │   │   │   test_get.py
│   │   │   │   │   │   │   │   test_getitem.py
│   │   │   │   │   │   │   │   test_indexing.py
│   │   │   │   │   │   │   │   test_mask.py
│   │   │   │   │   │   │   │   test_setitem.py
│   │   │   │   │   │   │   │   test_set_value.py
│   │   │   │   │   │   │   │   test_take.py
│   │   │   │   │   │   │   │   test_where.py
│   │   │   │   │   │   │   │   test_xs.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_delitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_get.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_getitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_indexing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_mask.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_setitem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_set_value.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_take.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_where.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_xs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── methods/
│   │   │   │   │   │   │   │   test_add_prefix_suffix.py
│   │   │   │   │   │   │   │   test_align.py
│   │   │   │   │   │   │   │   test_argsort.py
│   │   │   │   │   │   │   │   test_asof.py
│   │   │   │   │   │   │   │   test_astype.py
│   │   │   │   │   │   │   │   test_autocorr.py
│   │   │   │   │   │   │   │   test_between.py
│   │   │   │   │   │   │   │   test_case_when.py
│   │   │   │   │   │   │   │   test_clip.py
│   │   │   │   │   │   │   │   test_combine.py
│   │   │   │   │   │   │   │   test_combine_first.py
│   │   │   │   │   │   │   │   test_compare.py
│   │   │   │   │   │   │   │   test_convert_dtypes.py
│   │   │   │   │   │   │   │   test_copy.py
│   │   │   │   │   │   │   │   test_count.py
│   │   │   │   │   │   │   │   test_cov_corr.py
│   │   │   │   │   │   │   │   test_describe.py
│   │   │   │   │   │   │   │   test_diff.py
│   │   │   │   │   │   │   │   test_drop.py
│   │   │   │   │   │   │   │   test_dropna.py
│   │   │   │   │   │   │   │   test_drop_duplicates.py
│   │   │   │   │   │   │   │   test_dtypes.py
│   │   │   │   │   │   │   │   test_duplicated.py
│   │   │   │   │   │   │   │   test_equals.py
│   │   │   │   │   │   │   │   test_explode.py
│   │   │   │   │   │   │   │   test_fillna.py
│   │   │   │   │   │   │   │   test_get_numeric_data.py
│   │   │   │   │   │   │   │   test_head_tail.py
│   │   │   │   │   │   │   │   test_infer_objects.py
│   │   │   │   │   │   │   │   test_info.py
│   │   │   │   │   │   │   │   test_interpolate.py
│   │   │   │   │   │   │   │   test_isin.py
│   │   │   │   │   │   │   │   test_isna.py
│   │   │   │   │   │   │   │   test_is_monotonic.py
│   │   │   │   │   │   │   │   test_is_unique.py
│   │   │   │   │   │   │   │   test_item.py
│   │   │   │   │   │   │   │   test_map.py
│   │   │   │   │   │   │   │   test_matmul.py
│   │   │   │   │   │   │   │   test_nlargest.py
│   │   │   │   │   │   │   │   test_nunique.py
│   │   │   │   │   │   │   │   test_pct_change.py
│   │   │   │   │   │   │   │   test_pop.py
│   │   │   │   │   │   │   │   test_quantile.py
│   │   │   │   │   │   │   │   test_rank.py
│   │   │   │   │   │   │   │   test_reindex.py
│   │   │   │   │   │   │   │   test_reindex_like.py
│   │   │   │   │   │   │   │   test_rename.py
│   │   │   │   │   │   │   │   test_rename_axis.py
│   │   │   │   │   │   │   │   test_repeat.py
│   │   │   │   │   │   │   │   test_replace.py
│   │   │   │   │   │   │   │   test_reset_index.py
│   │   │   │   │   │   │   │   test_round.py
│   │   │   │   │   │   │   │   test_searchsorted.py
│   │   │   │   │   │   │   │   test_set_name.py
│   │   │   │   │   │   │   │   test_size.py
│   │   │   │   │   │   │   │   test_sort_index.py
│   │   │   │   │   │   │   │   test_sort_values.py
│   │   │   │   │   │   │   │   test_tolist.py
│   │   │   │   │   │   │   │   test_to_csv.py
│   │   │   │   │   │   │   │   test_to_dict.py
│   │   │   │   │   │   │   │   test_to_frame.py
│   │   │   │   │   │   │   │   test_to_numpy.py
│   │   │   │   │   │   │   │   test_truncate.py
│   │   │   │   │   │   │   │   test_tz_localize.py
│   │   │   │   │   │   │   │   test_unique.py
│   │   │   │   │   │   │   │   test_unstack.py
│   │   │   │   │   │   │   │   test_update.py
│   │   │   │   │   │   │   │   test_values.py
│   │   │   │   │   │   │   │   test_value_counts.py
│   │   │   │   │   │   │   │   test_view.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_add_prefix_suffix.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_align.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_argsort.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_asof.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_astype.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_autocorr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_between.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_case_when.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_clip.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_combine.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_combine_first.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_compare.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_convert_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_copy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_count.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_cov_corr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_describe.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_diff.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_drop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dropna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_drop_duplicates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_duplicated.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_equals.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_explode.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_fillna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_get_numeric_data.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_head_tail.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_infer_objects.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_info.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interpolate.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_isin.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_isna.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_is_monotonic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_is_unique.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_item.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_map.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_matmul.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_nlargest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_nunique.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pct_change.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_quantile.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rank.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reindex.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reindex_like.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rename.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rename_axis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_repeat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_replace.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reset_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_round.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_searchsorted.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_set_name.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_size.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sort_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_sort_values.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_tolist.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_csv.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_dict.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_frame.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_to_numpy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_truncate.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_tz_localize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_unique.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_unstack.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_update.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_values.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_value_counts.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_view.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_arithmetic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cumulative.cpython-310.pyc
│   │   │   │   │   │   │   │   test_formats.cpython-310.pyc
│   │   │   │   │   │   │   │   test_iteration.cpython-310.pyc
│   │   │   │   │   │   │   │   test_logical_ops.cpython-310.pyc
│   │   │   │   │   │   │   │   test_missing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_npfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_reductions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_subclass.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ufunc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_unary.cpython-310.pyc
│   │   │   │   │   │   │   │   test_validate.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── strings/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_case_justify.py
│   │   │   │   │   │   │   test_cat.py
│   │   │   │   │   │   │   test_extract.py
│   │   │   │   │   │   │   test_find_replace.py
│   │   │   │   │   │   │   test_get_dummies.py
│   │   │   │   │   │   │   test_split_partition.py
│   │   │   │   │   │   │   test_strings.py
│   │   │   │   │   │   │   test_string_array.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_case_justify.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cat.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extract.cpython-310.pyc
│   │   │   │   │   │   │   │   test_find_replace.cpython-310.pyc
│   │   │   │   │   │   │   │   test_get_dummies.cpython-310.pyc
│   │   │   │   │   │   │   │   test_split_partition.cpython-310.pyc
│   │   │   │   │   │   │   │   test_strings.cpython-310.pyc
│   │   │   │   │   │   │   │   test_string_array.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tools/
│   │   │   │   │   │   │   test_to_datetime.py
│   │   │   │   │   │   │   test_to_numeric.py
│   │   │   │   │   │   │   test_to_time.py
│   │   │   │   │   │   │   test_to_timedelta.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_to_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_to_numeric.cpython-310.pyc
│   │   │   │   │   │   │   │   test_to_time.cpython-310.pyc
│   │   │   │   │   │   │   │   test_to_timedelta.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tseries/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── frequencies/
│   │   │   │   │   │   │   │   test_frequencies.py
│   │   │   │   │   │   │   │   test_freq_code.py
│   │   │   │   │   │   │   │   test_inference.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_frequencies.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_freq_code.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_inference.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── holiday/
│   │   │   │   │   │   │   │   test_calendar.py
│   │   │   │   │   │   │   │   test_federal.py
│   │   │   │   │   │   │   │   test_holiday.py
│   │   │   │   │   │   │   │   test_observance.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_calendar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_federal.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_holiday.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_observance.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── offsets/
│   │   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   │   test_business_day.py
│   │   │   │   │   │   │   │   test_business_hour.py
│   │   │   │   │   │   │   │   test_business_month.py
│   │   │   │   │   │   │   │   test_business_quarter.py
│   │   │   │   │   │   │   │   test_business_year.py
│   │   │   │   │   │   │   │   test_common.py
│   │   │   │   │   │   │   │   test_custom_business_day.py
│   │   │   │   │   │   │   │   test_custom_business_hour.py
│   │   │   │   │   │   │   │   test_custom_business_month.py
│   │   │   │   │   │   │   │   test_dst.py
│   │   │   │   │   │   │   │   test_easter.py
│   │   │   │   │   │   │   │   test_fiscal.py
│   │   │   │   │   │   │   │   test_index.py
│   │   │   │   │   │   │   │   test_month.py
│   │   │   │   │   │   │   │   test_offsets.py
│   │   │   │   │   │   │   │   test_offsets_properties.py
│   │   │   │   │   │   │   │   test_quarter.py
│   │   │   │   │   │   │   │   test_ticks.py
│   │   │   │   │   │   │   │   test_week.py
│   │   │   │   │   │   │   │   test_year.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_business_day.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_business_hour.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_business_month.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_business_quarter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_business_year.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_custom_business_day.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_custom_business_hour.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_custom_business_month.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_dst.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_easter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_fiscal.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_index.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_month.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_offsets.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_offsets_properties.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_quarter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_ticks.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_week.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_year.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tslibs/
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_array_to_datetime.py
│   │   │   │   │   │   │   test_ccalendar.py
│   │   │   │   │   │   │   test_conversion.py
│   │   │   │   │   │   │   test_fields.py
│   │   │   │   │   │   │   test_libfrequencies.py
│   │   │   │   │   │   │   test_liboffsets.py
│   │   │   │   │   │   │   test_npy_units.py
│   │   │   │   │   │   │   test_np_datetime.py
│   │   │   │   │   │   │   test_parse_iso8601.py
│   │   │   │   │   │   │   test_parsing.py
│   │   │   │   │   │   │   test_period.py
│   │   │   │   │   │   │   test_resolution.py
│   │   │   │   │   │   │   test_strptime.py
│   │   │   │   │   │   │   test_timedeltas.py
│   │   │   │   │   │   │   test_timezones.py
│   │   │   │   │   │   │   test_to_offset.py
│   │   │   │   │   │   │   test_tzconversion.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_to_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ccalendar.cpython-310.pyc
│   │   │   │   │   │   │   │   test_conversion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fields.cpython-310.pyc
│   │   │   │   │   │   │   │   test_libfrequencies.cpython-310.pyc
│   │   │   │   │   │   │   │   test_liboffsets.cpython-310.pyc
│   │   │   │   │   │   │   │   test_npy_units.cpython-310.pyc
│   │   │   │   │   │   │   │   test_np_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_parse_iso8601.cpython-310.pyc
│   │   │   │   │   │   │   │   test_parsing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_period.cpython-310.pyc
│   │   │   │   │   │   │   │   test_resolution.cpython-310.pyc
│   │   │   │   │   │   │   │   test_strptime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_timedeltas.cpython-310.pyc
│   │   │   │   │   │   │   │   test_timezones.cpython-310.pyc
│   │   │   │   │   │   │   │   test_to_offset.cpython-310.pyc
│   │   │   │   │   │   │   │   test_tzconversion.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── util/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_assert_almost_equal.py
│   │   │   │   │   │   │   test_assert_attr_equal.py
│   │   │   │   │   │   │   test_assert_categorical_equal.py
│   │   │   │   │   │   │   test_assert_extension_array_equal.py
│   │   │   │   │   │   │   test_assert_frame_equal.py
│   │   │   │   │   │   │   test_assert_index_equal.py
│   │   │   │   │   │   │   test_assert_interval_array_equal.py
│   │   │   │   │   │   │   test_assert_numpy_array_equal.py
│   │   │   │   │   │   │   test_assert_produces_warning.py
│   │   │   │   │   │   │   test_assert_series_equal.py
│   │   │   │   │   │   │   test_deprecate.py
│   │   │   │   │   │   │   test_deprecate_kwarg.py
│   │   │   │   │   │   │   test_deprecate_nonkeyword_arguments.py
│   │   │   │   │   │   │   test_doc.py
│   │   │   │   │   │   │   test_hashing.py
│   │   │   │   │   │   │   test_numba.py
│   │   │   │   │   │   │   test_rewrite_warning.py
│   │   │   │   │   │   │   test_shares_memory.py
│   │   │   │   │   │   │   test_show_versions.py
│   │   │   │   │   │   │   test_util.py
│   │   │   │   │   │   │   test_validate_args.py
│   │   │   │   │   │   │   test_validate_args_and_kwargs.py
│   │   │   │   │   │   │   test_validate_inclusive.py
│   │   │   │   │   │   │   test_validate_kwargs.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_almost_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_attr_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_categorical_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_extension_array_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_frame_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_index_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_interval_array_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_numpy_array_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_produces_warning.cpython-310.pyc
│   │   │   │   │   │   │   │   test_assert_series_equal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_deprecate.cpython-310.pyc
│   │   │   │   │   │   │   │   test_deprecate_kwarg.cpython-310.pyc
│   │   │   │   │   │   │   │   test_deprecate_nonkeyword_arguments.cpython-310.pyc
│   │   │   │   │   │   │   │   test_doc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hashing.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numba.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rewrite_warning.cpython-310.pyc
│   │   │   │   │   │   │   │   test_shares_memory.cpython-310.pyc
│   │   │   │   │   │   │   │   test_show_versions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_util.cpython-310.pyc
│   │   │   │   │   │   │   │   test_validate_args.cpython-310.pyc
│   │   │   │   │   │   │   │   test_validate_args_and_kwargs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_validate_inclusive.cpython-310.pyc
│   │   │   │   │   │   │   │   test_validate_kwargs.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── window/
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   test_api.py
│   │   │   │   │   │   │   test_apply.py
│   │   │   │   │   │   │   test_base_indexer.py
│   │   │   │   │   │   │   test_cython_aggregations.py
│   │   │   │   │   │   │   test_dtypes.py
│   │   │   │   │   │   │   test_ewm.py
│   │   │   │   │   │   │   test_expanding.py
│   │   │   │   │   │   │   test_groupby.py
│   │   │   │   │   │   │   test_numba.py
│   │   │   │   │   │   │   test_online.py
│   │   │   │   │   │   │   test_pairwise.py
│   │   │   │   │   │   │   test_rolling.py
│   │   │   │   │   │   │   test_rolling_functions.py
│   │   │   │   │   │   │   test_rolling_quantile.py
│   │   │   │   │   │   │   test_rolling_skew_kurt.py
│   │   │   │   │   │   │   test_timeseries_window.py
│   │   │   │   │   │   │   test_win_type.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── moments/
│   │   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   │   test_moments_consistency_ewm.py
│   │   │   │   │   │   │   │   test_moments_consistency_expanding.py
│   │   │   │   │   │   │   │   test_moments_consistency_rolling.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_moments_consistency_ewm.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_moments_consistency_expanding.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_moments_consistency_rolling.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   test_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_apply.cpython-310.pyc
│   │   │   │   │   │   │   │   test_base_indexer.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cython_aggregations.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dtypes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ewm.cpython-310.pyc
│   │   │   │   │   │   │   │   test_expanding.cpython-310.pyc
│   │   │   │   │   │   │   │   test_groupby.cpython-310.pyc
│   │   │   │   │   │   │   │   test_numba.cpython-310.pyc
│   │   │   │   │   │   │   │   test_online.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pairwise.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rolling.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rolling_functions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rolling_quantile.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rolling_skew_kurt.cpython-310.pyc
│   │   │   │   │   │   │   │   test_timeseries_window.cpython-310.pyc
│   │   │   │   │   │   │   │   test_win_type.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   test_aggregation.cpython-310.pyc
│   │   │   │   │   │   │   test_algos.cpython-310.pyc
│   │   │   │   │   │   │   test_common.cpython-310.pyc
│   │   │   │   │   │   │   test_downstream.cpython-310.pyc
│   │   │   │   │   │   │   test_errors.cpython-310.pyc
│   │   │   │   │   │   │   test_expressions.cpython-310.pyc
│   │   │   │   │   │   │   test_flags.cpython-310.pyc
│   │   │   │   │   │   │   test_multilevel.cpython-310.pyc
│   │   │   │   │   │   │   test_nanops.cpython-310.pyc
│   │   │   │   │   │   │   test_optional_dependency.cpython-310.pyc
│   │   │   │   │   │   │   test_register_accessor.cpython-310.pyc
│   │   │   │   │   │   │   test_sorting.cpython-310.pyc
│   │   │   │   │   │   │   test_take.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tseries/
│   │   │   │   │   │   api.py
│   │   │   │   │   │   frequencies.py
│   │   │   │   │   │   holiday.py
│   │   │   │   │   │   offsets.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   frequencies.cpython-310.pyc
│   │   │   │   │   │   │   holiday.cpython-310.pyc
│   │   │   │   │   │   │   offsets.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── util/
│   │   │   │   │   │   _decorators.py
│   │   │   │   │   │   _doctools.py
│   │   │   │   │   │   _exceptions.py
│   │   │   │   │   │   _print_versions.py
│   │   │   │   │   │   _tester.py
│   │   │   │   │   │   _test_decorators.py
│   │   │   │   │   │   _validators.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── version/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _decorators.cpython-310.pyc
│   │   │   │   │   │   │   _doctools.cpython-310.pyc
│   │   │   │   │   │   │   _exceptions.cpython-310.pyc
│   │   │   │   │   │   │   _print_versions.cpython-310.pyc
│   │   │   │   │   │   │   _tester.cpython-310.pyc
│   │   │   │   │   │   │   _test_decorators.cpython-310.pyc
│   │   │   │   │   │   │   _validators.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _config/
│   │   │   │   │   │   config.py
│   │   │   │   │   │   dates.py
│   │   │   │   │   │   display.py
│   │   │   │   │   │   localization.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   config.cpython-310.pyc
│   │   │   │   │   │   │   dates.cpython-310.pyc
│   │   │   │   │   │   │   display.cpython-310.pyc
│   │   │   │   │   │   │   localization.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _libs/
│   │   │   │   │   │   algos.cp310-win_amd64.lib
│   │   │   │   │   │   algos.cp310-win_amd64.pyd
│   │   │   │   │   │   algos.pyi
│   │   │   │   │   │   arrays.cp310-win_amd64.lib
│   │   │   │   │   │   arrays.cp310-win_amd64.pyd
│   │   │   │   │   │   arrays.pyi
│   │   │   │   │   │   byteswap.cp310-win_amd64.lib
│   │   │   │   │   │   byteswap.cp310-win_amd64.pyd
│   │   │   │   │   │   byteswap.pyi
│   │   │   │   │   │   groupby.cp310-win_amd64.lib
│   │   │   │   │   │   groupby.cp310-win_amd64.pyd
│   │   │   │   │   │   groupby.pyi
│   │   │   │   │   │   hashing.cp310-win_amd64.lib
│   │   │   │   │   │   hashing.cp310-win_amd64.pyd
│   │   │   │   │   │   hashing.pyi
│   │   │   │   │   │   hashtable.cp310-win_amd64.lib
│   │   │   │   │   │   hashtable.cp310-win_amd64.pyd
│   │   │   │   │   │   hashtable.pyi
│   │   │   │   │   │   index.cp310-win_amd64.lib
│   │   │   │   │   │   index.cp310-win_amd64.pyd
│   │   │   │   │   │   index.pyi
│   │   │   │   │   │   indexing.cp310-win_amd64.lib
│   │   │   │   │   │   indexing.cp310-win_amd64.pyd
│   │   │   │   │   │   indexing.pyi
│   │   │   │   │   │   internals.cp310-win_amd64.lib
│   │   │   │   │   │   internals.cp310-win_amd64.pyd
│   │   │   │   │   │   internals.pyi
│   │   │   │   │   │   interval.cp310-win_amd64.lib
│   │   │   │   │   │   interval.cp310-win_amd64.pyd
│   │   │   │   │   │   interval.pyi
│   │   │   │   │   │   join.cp310-win_amd64.lib
│   │   │   │   │   │   join.cp310-win_amd64.pyd
│   │   │   │   │   │   join.pyi
│   │   │   │   │   │   json.cp310-win_amd64.lib
│   │   │   │   │   │   json.cp310-win_amd64.pyd
│   │   │   │   │   │   json.pyi
│   │   │   │   │   │   lib.cp310-win_amd64.lib
│   │   │   │   │   │   lib.cp310-win_amd64.pyd
│   │   │   │   │   │   lib.pyi
│   │   │   │   │   │   missing.cp310-win_amd64.lib
│   │   │   │   │   │   missing.cp310-win_amd64.pyd
│   │   │   │   │   │   missing.pyi
│   │   │   │   │   │   ops.cp310-win_amd64.lib
│   │   │   │   │   │   ops.cp310-win_amd64.pyd
│   │   │   │   │   │   ops.pyi
│   │   │   │   │   │   ops_dispatch.cp310-win_amd64.lib
│   │   │   │   │   │   ops_dispatch.cp310-win_amd64.pyd
│   │   │   │   │   │   ops_dispatch.pyi
│   │   │   │   │   │   pandas_datetime.cp310-win_amd64.lib
│   │   │   │   │   │   pandas_datetime.cp310-win_amd64.pyd
│   │   │   │   │   │   pandas_parser.cp310-win_amd64.lib
│   │   │   │   │   │   pandas_parser.cp310-win_amd64.pyd
│   │   │   │   │   │   parsers.cp310-win_amd64.lib
│   │   │   │   │   │   parsers.cp310-win_amd64.pyd
│   │   │   │   │   │   parsers.pyi
│   │   │   │   │   │   properties.cp310-win_amd64.lib
│   │   │   │   │   │   properties.cp310-win_amd64.pyd
│   │   │   │   │   │   properties.pyi
│   │   │   │   │   │   reshape.cp310-win_amd64.lib
│   │   │   │   │   │   reshape.cp310-win_amd64.pyd
│   │   │   │   │   │   reshape.pyi
│   │   │   │   │   │   sas.cp310-win_amd64.lib
│   │   │   │   │   │   sas.cp310-win_amd64.pyd
│   │   │   │   │   │   sas.pyi
│   │   │   │   │   │   sparse.cp310-win_amd64.lib
│   │   │   │   │   │   sparse.cp310-win_amd64.pyd
│   │   │   │   │   │   sparse.pyi
│   │   │   │   │   │   testing.cp310-win_amd64.lib
│   │   │   │   │   │   testing.cp310-win_amd64.pyd
│   │   │   │   │   │   testing.pyi
│   │   │   │   │   │   tslib.cp310-win_amd64.lib
│   │   │   │   │   │   tslib.cp310-win_amd64.pyd
│   │   │   │   │   │   tslib.pyi
│   │   │   │   │   │   writers.cp310-win_amd64.lib
│   │   │   │   │   │   writers.cp310-win_amd64.pyd
│   │   │   │   │   │   writers.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tslibs/
│   │   │   │   │   │   │   base.cp310-win_amd64.lib
│   │   │   │   │   │   │   base.cp310-win_amd64.pyd
│   │   │   │   │   │   │   ccalendar.cp310-win_amd64.lib
│   │   │   │   │   │   │   ccalendar.cp310-win_amd64.pyd
│   │   │   │   │   │   │   ccalendar.pyi
│   │   │   │   │   │   │   conversion.cp310-win_amd64.lib
│   │   │   │   │   │   │   conversion.cp310-win_amd64.pyd
│   │   │   │   │   │   │   conversion.pyi
│   │   │   │   │   │   │   dtypes.cp310-win_amd64.lib
│   │   │   │   │   │   │   dtypes.cp310-win_amd64.pyd
│   │   │   │   │   │   │   dtypes.pyi
│   │   │   │   │   │   │   fields.cp310-win_amd64.lib
│   │   │   │   │   │   │   fields.cp310-win_amd64.pyd
│   │   │   │   │   │   │   fields.pyi
│   │   │   │   │   │   │   nattype.cp310-win_amd64.lib
│   │   │   │   │   │   │   nattype.cp310-win_amd64.pyd
│   │   │   │   │   │   │   nattype.pyi
│   │   │   │   │   │   │   np_datetime.cp310-win_amd64.lib
│   │   │   │   │   │   │   np_datetime.cp310-win_amd64.pyd
│   │   │   │   │   │   │   np_datetime.pyi
│   │   │   │   │   │   │   offsets.cp310-win_amd64.lib
│   │   │   │   │   │   │   offsets.cp310-win_amd64.pyd
│   │   │   │   │   │   │   offsets.pyi
│   │   │   │   │   │   │   parsing.cp310-win_amd64.lib
│   │   │   │   │   │   │   parsing.cp310-win_amd64.pyd
│   │   │   │   │   │   │   parsing.pyi
│   │   │   │   │   │   │   period.cp310-win_amd64.lib
│   │   │   │   │   │   │   period.cp310-win_amd64.pyd
│   │   │   │   │   │   │   period.pyi
│   │   │   │   │   │   │   strptime.cp310-win_amd64.lib
│   │   │   │   │   │   │   strptime.cp310-win_amd64.pyd
│   │   │   │   │   │   │   strptime.pyi
│   │   │   │   │   │   │   timedeltas.cp310-win_amd64.lib
│   │   │   │   │   │   │   timedeltas.cp310-win_amd64.pyd
│   │   │   │   │   │   │   timedeltas.pyi
│   │   │   │   │   │   │   timestamps.cp310-win_amd64.lib
│   │   │   │   │   │   │   timestamps.cp310-win_amd64.pyd
│   │   │   │   │   │   │   timestamps.pyi
│   │   │   │   │   │   │   timezones.cp310-win_amd64.lib
│   │   │   │   │   │   │   timezones.cp310-win_amd64.pyd
│   │   │   │   │   │   │   timezones.pyi
│   │   │   │   │   │   │   tzconversion.cp310-win_amd64.lib
│   │   │   │   │   │   │   tzconversion.cp310-win_amd64.pyd
│   │   │   │   │   │   │   tzconversion.pyi
│   │   │   │   │   │   │   vectorized.cp310-win_amd64.lib
│   │   │   │   │   │   │   vectorized.cp310-win_amd64.pyd
│   │   │   │   │   │   │   vectorized.pyi
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── window/
│   │   │   │   │   │   │   aggregations.cp310-win_amd64.lib
│   │   │   │   │   │   │   aggregations.cp310-win_amd64.pyd
│   │   │   │   │   │   │   aggregations.pyi
│   │   │   │   │   │   │   indexers.cp310-win_amd64.lib
│   │   │   │   │   │   │   indexers.cp310-win_amd64.pyd
│   │   │   │   │   │   │   indexers.pyi
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _testing/
│   │   │   │   │   │   asserters.py
│   │   │   │   │   │   compat.py
│   │   │   │   │   │   contexts.py
│   │   │   │   │   │   _hypothesis.py
│   │   │   │   │   │   _io.py
│   │   │   │   │   │   _warnings.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   asserters.cpython-310.pyc
│   │   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   │   contexts.cpython-310.pyc
│   │   │   │   │   │   │   _hypothesis.cpython-310.pyc
│   │   │   │   │   │   │   _io.cpython-310.pyc
│   │   │   │   │   │   │   _warnings.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   testing.cpython-310.pyc
│   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   _version_meson.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── pandas-2.3.3.dist-info/
│   │   │   │   │   DELVEWHEEL
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   WHEEL
│   │   │   │   ├── pandas.libs/
│   │   │   │   │   msvcp140-a4c2229bdc2a2a630acdc095b4d86008.dll
│   │   │   │   ├── PIL/
│   │   │   │   │   AvifImagePlugin.py
│   │   │   │   │   BdfFontFile.py
│   │   │   │   │   BlpImagePlugin.py
│   │   │   │   │   BmpImagePlugin.py
│   │   │   │   │   BufrStubImagePlugin.py
│   │   │   │   │   ContainerIO.py
│   │   │   │   │   CurImagePlugin.py
│   │   │   │   │   DcxImagePlugin.py
│   │   │   │   │   DdsImagePlugin.py
│   │   │   │   │   EpsImagePlugin.py
│   │   │   │   │   ExifTags.py
│   │   │   │   │   features.py
│   │   │   │   │   FitsImagePlugin.py
│   │   │   │   │   FliImagePlugin.py
│   │   │   │   │   FontFile.py
│   │   │   │   │   FpxImagePlugin.py
│   │   │   │   │   FtexImagePlugin.py
│   │   │   │   │   GbrImagePlugin.py
│   │   │   │   │   GdImageFile.py
│   │   │   │   │   GifImagePlugin.py
│   │   │   │   │   GimpGradientFile.py
│   │   │   │   │   GimpPaletteFile.py
│   │   │   │   │   GribStubImagePlugin.py
│   │   │   │   │   Hdf5StubImagePlugin.py
│   │   │   │   │   IcnsImagePlugin.py
│   │   │   │   │   IcoImagePlugin.py
│   │   │   │   │   Image.py
│   │   │   │   │   ImageChops.py
│   │   │   │   │   ImageCms.py
│   │   │   │   │   ImageColor.py
│   │   │   │   │   ImageDraw.py
│   │   │   │   │   ImageDraw2.py
│   │   │   │   │   ImageEnhance.py
│   │   │   │   │   ImageFile.py
│   │   │   │   │   ImageFilter.py
│   │   │   │   │   ImageFont.py
│   │   │   │   │   ImageGrab.py
│   │   │   │   │   ImageMath.py
│   │   │   │   │   ImageMode.py
│   │   │   │   │   ImageMorph.py
│   │   │   │   │   ImageOps.py
│   │   │   │   │   ImagePalette.py
│   │   │   │   │   ImagePath.py
│   │   │   │   │   ImageQt.py
│   │   │   │   │   ImageSequence.py
│   │   │   │   │   ImageShow.py
│   │   │   │   │   ImageStat.py
│   │   │   │   │   ImageText.py
│   │   │   │   │   ImageTk.py
│   │   │   │   │   ImageTransform.py
│   │   │   │   │   ImageWin.py
│   │   │   │   │   ImImagePlugin.py
│   │   │   │   │   ImtImagePlugin.py
│   │   │   │   │   IptcImagePlugin.py
│   │   │   │   │   Jpeg2KImagePlugin.py
│   │   │   │   │   JpegImagePlugin.py
│   │   │   │   │   JpegPresets.py
│   │   │   │   │   McIdasImagePlugin.py
│   │   │   │   │   MicImagePlugin.py
│   │   │   │   │   MpegImagePlugin.py
│   │   │   │   │   MpoImagePlugin.py
│   │   │   │   │   MspImagePlugin.py
│   │   │   │   │   PaletteFile.py
│   │   │   │   │   PalmImagePlugin.py
│   │   │   │   │   PcdImagePlugin.py
│   │   │   │   │   PcfFontFile.py
│   │   │   │   │   PcxImagePlugin.py
│   │   │   │   │   PdfImagePlugin.py
│   │   │   │   │   PdfParser.py
│   │   │   │   │   PixarImagePlugin.py
│   │   │   │   │   PngImagePlugin.py
│   │   │   │   │   PpmImagePlugin.py
│   │   │   │   │   PsdImagePlugin.py
│   │   │   │   │   PSDraw.py
│   │   │   │   │   py.typed
│   │   │   │   │   QoiImagePlugin.py
│   │   │   │   │   report.py
│   │   │   │   │   SgiImagePlugin.py
│   │   │   │   │   SpiderImagePlugin.py
│   │   │   │   │   SunImagePlugin.py
│   │   │   │   │   TarIO.py
│   │   │   │   │   TgaImagePlugin.py
│   │   │   │   │   TiffImagePlugin.py
│   │   │   │   │   TiffTags.py
│   │   │   │   │   WalImageFile.py
│   │   │   │   │   WebPImagePlugin.py
│   │   │   │   │   WmfImagePlugin.py
│   │   │   │   │   XbmImagePlugin.py
│   │   │   │   │   XpmImagePlugin.py
│   │   │   │   │   XVThumbImagePlugin.py
│   │   │   │   │   _avif.cp310-win_amd64.pyd
│   │   │   │   │   _avif.pyi
│   │   │   │   │   _binary.py
│   │   │   │   │   _deprecate.py
│   │   │   │   │   _imaging.cp310-win_amd64.pyd
│   │   │   │   │   _imaging.pyi
│   │   │   │   │   _imagingcms.cp310-win_amd64.pyd
│   │   │   │   │   _imagingcms.pyi
│   │   │   │   │   _imagingft.cp310-win_amd64.pyd
│   │   │   │   │   _imagingft.pyi
│   │   │   │   │   _imagingmath.cp310-win_amd64.pyd
│   │   │   │   │   _imagingmath.pyi
│   │   │   │   │   _imagingmorph.cp310-win_amd64.pyd
│   │   │   │   │   _imagingmorph.pyi
│   │   │   │   │   _imagingtk.cp310-win_amd64.pyd
│   │   │   │   │   _imagingtk.pyi
│   │   │   │   │   _tkinter_finder.py
│   │   │   │   │   _typing.py
│   │   │   │   │   _util.py
│   │   │   │   │   _version.py
│   │   │   │   │   _webp.cp310-win_amd64.pyd
│   │   │   │   │   _webp.pyi
│   │   │   │   │   __init__.py
│   │   │   │   │   __main__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   AvifImagePlugin.cpython-310.pyc
│   │   │   │   │   │   BdfFontFile.cpython-310.pyc
│   │   │   │   │   │   BlpImagePlugin.cpython-310.pyc
│   │   │   │   │   │   BmpImagePlugin.cpython-310.pyc
│   │   │   │   │   │   BufrStubImagePlugin.cpython-310.pyc
│   │   │   │   │   │   ContainerIO.cpython-310.pyc
│   │   │   │   │   │   CurImagePlugin.cpython-310.pyc
│   │   │   │   │   │   DcxImagePlugin.cpython-310.pyc
│   │   │   │   │   │   DdsImagePlugin.cpython-310.pyc
│   │   │   │   │   │   EpsImagePlugin.cpython-310.pyc
│   │   │   │   │   │   ExifTags.cpython-310.pyc
│   │   │   │   │   │   features.cpython-310.pyc
│   │   │   │   │   │   FitsImagePlugin.cpython-310.pyc
│   │   │   │   │   │   FliImagePlugin.cpython-310.pyc
│   │   │   │   │   │   FontFile.cpython-310.pyc
│   │   │   │   │   │   FpxImagePlugin.cpython-310.pyc
│   │   │   │   │   │   FtexImagePlugin.cpython-310.pyc
│   │   │   │   │   │   GbrImagePlugin.cpython-310.pyc
│   │   │   │   │   │   GdImageFile.cpython-310.pyc
│   │   │   │   │   │   GifImagePlugin.cpython-310.pyc
│   │   │   │   │   │   GimpGradientFile.cpython-310.pyc
│   │   │   │   │   │   GimpPaletteFile.cpython-310.pyc
│   │   │   │   │   │   GribStubImagePlugin.cpython-310.pyc
│   │   │   │   │   │   Hdf5StubImagePlugin.cpython-310.pyc
│   │   │   │   │   │   IcnsImagePlugin.cpython-310.pyc
│   │   │   │   │   │   IcoImagePlugin.cpython-310.pyc
│   │   │   │   │   │   Image.cpython-310.pyc
│   │   │   │   │   │   ImageChops.cpython-310.pyc
│   │   │   │   │   │   ImageCms.cpython-310.pyc
│   │   │   │   │   │   ImageColor.cpython-310.pyc
│   │   │   │   │   │   ImageDraw.cpython-310.pyc
│   │   │   │   │   │   ImageDraw2.cpython-310.pyc
│   │   │   │   │   │   ImageEnhance.cpython-310.pyc
│   │   │   │   │   │   ImageFile.cpython-310.pyc
│   │   │   │   │   │   ImageFilter.cpython-310.pyc
│   │   │   │   │   │   ImageFont.cpython-310.pyc
│   │   │   │   │   │   ImageGrab.cpython-310.pyc
│   │   │   │   │   │   ImageMath.cpython-310.pyc
│   │   │   │   │   │   ImageMode.cpython-310.pyc
│   │   │   │   │   │   ImageMorph.cpython-310.pyc
│   │   │   │   │   │   ImageOps.cpython-310.pyc
│   │   │   │   │   │   ImagePalette.cpython-310.pyc
│   │   │   │   │   │   ImagePath.cpython-310.pyc
│   │   │   │   │   │   ImageQt.cpython-310.pyc
│   │   │   │   │   │   ImageSequence.cpython-310.pyc
│   │   │   │   │   │   ImageShow.cpython-310.pyc
│   │   │   │   │   │   ImageStat.cpython-310.pyc
│   │   │   │   │   │   ImageText.cpython-310.pyc
│   │   │   │   │   │   ImageTk.cpython-310.pyc
│   │   │   │   │   │   ImageTransform.cpython-310.pyc
│   │   │   │   │   │   ImageWin.cpython-310.pyc
│   │   │   │   │   │   ImImagePlugin.cpython-310.pyc
│   │   │   │   │   │   ImtImagePlugin.cpython-310.pyc
│   │   │   │   │   │   IptcImagePlugin.cpython-310.pyc
│   │   │   │   │   │   Jpeg2KImagePlugin.cpython-310.pyc
│   │   │   │   │   │   JpegImagePlugin.cpython-310.pyc
│   │   │   │   │   │   JpegPresets.cpython-310.pyc
│   │   │   │   │   │   McIdasImagePlugin.cpython-310.pyc
│   │   │   │   │   │   MicImagePlugin.cpython-310.pyc
│   │   │   │   │   │   MpegImagePlugin.cpython-310.pyc
│   │   │   │   │   │   MpoImagePlugin.cpython-310.pyc
│   │   │   │   │   │   MspImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PaletteFile.cpython-310.pyc
│   │   │   │   │   │   PalmImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PcdImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PcfFontFile.cpython-310.pyc
│   │   │   │   │   │   PcxImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PdfImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PdfParser.cpython-310.pyc
│   │   │   │   │   │   PixarImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PngImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PpmImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PsdImagePlugin.cpython-310.pyc
│   │   │   │   │   │   PSDraw.cpython-310.pyc
│   │   │   │   │   │   QoiImagePlugin.cpython-310.pyc
│   │   │   │   │   │   report.cpython-310.pyc
│   │   │   │   │   │   SgiImagePlugin.cpython-310.pyc
│   │   │   │   │   │   SpiderImagePlugin.cpython-310.pyc
│   │   │   │   │   │   SunImagePlugin.cpython-310.pyc
│   │   │   │   │   │   TarIO.cpython-310.pyc
│   │   │   │   │   │   TgaImagePlugin.cpython-310.pyc
│   │   │   │   │   │   TiffImagePlugin.cpython-310.pyc
│   │   │   │   │   │   TiffTags.cpython-310.pyc
│   │   │   │   │   │   WalImageFile.cpython-310.pyc
│   │   │   │   │   │   WebPImagePlugin.cpython-310.pyc
│   │   │   │   │   │   WmfImagePlugin.cpython-310.pyc
│   │   │   │   │   │   XbmImagePlugin.cpython-310.pyc
│   │   │   │   │   │   XpmImagePlugin.cpython-310.pyc
│   │   │   │   │   │   XVThumbImagePlugin.cpython-310.pyc
│   │   │   │   │   │   _binary.cpython-310.pyc
│   │   │   │   │   │   _deprecate.cpython-310.pyc
│   │   │   │   │   │   _tkinter_finder.cpython-310.pyc
│   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   _util.cpython-310.pyc
│   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   ├── pillow-12.0.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   zip-safe
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── pip/
│   │   │   │   │   py.typed
│   │   │   │   │   __init__.py
│   │   │   │   │   __main__.py
│   │   │   │   │   __pip-runner__.py
│   │   │   │   │   ├── _internal/
│   │   │   │   │   │   build_env.py
│   │   │   │   │   │   cache.py
│   │   │   │   │   │   configuration.py
│   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   main.py
│   │   │   │   │   │   pyproject.py
│   │   │   │   │   │   self_outdated_check.py
│   │   │   │   │   │   wheel_builder.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── cli/
│   │   │   │   │   │   │   autocompletion.py
│   │   │   │   │   │   │   base_command.py
│   │   │   │   │   │   │   cmdoptions.py
│   │   │   │   │   │   │   command_context.py
│   │   │   │   │   │   │   index_command.py
│   │   │   │   │   │   │   main.py
│   │   │   │   │   │   │   main_parser.py
│   │   │   │   │   │   │   parser.py
│   │   │   │   │   │   │   progress_bars.py
│   │   │   │   │   │   │   req_command.py
│   │   │   │   │   │   │   spinners.py
│   │   │   │   │   │   │   status_codes.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   autocompletion.cpython-310.pyc
│   │   │   │   │   │   │   │   base_command.cpython-310.pyc
│   │   │   │   │   │   │   │   cmdoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   command_context.cpython-310.pyc
│   │   │   │   │   │   │   │   index_command.cpython-310.pyc
│   │   │   │   │   │   │   │   main.cpython-310.pyc
│   │   │   │   │   │   │   │   main_parser.cpython-310.pyc
│   │   │   │   │   │   │   │   parser.cpython-310.pyc
│   │   │   │   │   │   │   │   progress_bars.cpython-310.pyc
│   │   │   │   │   │   │   │   req_command.cpython-310.pyc
│   │   │   │   │   │   │   │   spinners.cpython-310.pyc
│   │   │   │   │   │   │   │   status_codes.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── commands/
│   │   │   │   │   │   │   cache.py
│   │   │   │   │   │   │   check.py
│   │   │   │   │   │   │   completion.py
│   │   │   │   │   │   │   configuration.py
│   │   │   │   │   │   │   debug.py
│   │   │   │   │   │   │   download.py
│   │   │   │   │   │   │   freeze.py
│   │   │   │   │   │   │   hash.py
│   │   │   │   │   │   │   help.py
│   │   │   │   │   │   │   index.py
│   │   │   │   │   │   │   inspect.py
│   │   │   │   │   │   │   install.py
│   │   │   │   │   │   │   list.py
│   │   │   │   │   │   │   lock.py
│   │   │   │   │   │   │   search.py
│   │   │   │   │   │   │   show.py
│   │   │   │   │   │   │   uninstall.py
│   │   │   │   │   │   │   wheel.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   cache.cpython-310.pyc
│   │   │   │   │   │   │   │   check.cpython-310.pyc
│   │   │   │   │   │   │   │   completion.cpython-310.pyc
│   │   │   │   │   │   │   │   configuration.cpython-310.pyc
│   │   │   │   │   │   │   │   debug.cpython-310.pyc
│   │   │   │   │   │   │   │   download.cpython-310.pyc
│   │   │   │   │   │   │   │   freeze.cpython-310.pyc
│   │   │   │   │   │   │   │   hash.cpython-310.pyc
│   │   │   │   │   │   │   │   help.cpython-310.pyc
│   │   │   │   │   │   │   │   index.cpython-310.pyc
│   │   │   │   │   │   │   │   inspect.cpython-310.pyc
│   │   │   │   │   │   │   │   install.cpython-310.pyc
│   │   │   │   │   │   │   │   list.cpython-310.pyc
│   │   │   │   │   │   │   │   lock.cpython-310.pyc
│   │   │   │   │   │   │   │   search.cpython-310.pyc
│   │   │   │   │   │   │   │   show.cpython-310.pyc
│   │   │   │   │   │   │   │   uninstall.cpython-310.pyc
│   │   │   │   │   │   │   │   wheel.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── distributions/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   installed.py
│   │   │   │   │   │   │   sdist.py
│   │   │   │   │   │   │   wheel.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   installed.cpython-310.pyc
│   │   │   │   │   │   │   │   sdist.cpython-310.pyc
│   │   │   │   │   │   │   │   wheel.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── index/
│   │   │   │   │   │   │   collector.py
│   │   │   │   │   │   │   package_finder.py
│   │   │   │   │   │   │   sources.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   collector.cpython-310.pyc
│   │   │   │   │   │   │   │   package_finder.cpython-310.pyc
│   │   │   │   │   │   │   │   sources.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── locations/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   _distutils.py
│   │   │   │   │   │   │   _sysconfig.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   _distutils.cpython-310.pyc
│   │   │   │   │   │   │   │   _sysconfig.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── metadata/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   pkg_resources.py
│   │   │   │   │   │   │   _json.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── importlib/
│   │   │   │   │   │   │   │   _compat.py
│   │   │   │   │   │   │   │   _dists.py
│   │   │   │   │   │   │   │   _envs.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _compat.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _dists.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _envs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   pkg_resources.cpython-310.pyc
│   │   │   │   │   │   │   │   _json.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── models/
│   │   │   │   │   │   │   candidate.py
│   │   │   │   │   │   │   direct_url.py
│   │   │   │   │   │   │   format_control.py
│   │   │   │   │   │   │   index.py
│   │   │   │   │   │   │   installation_report.py
│   │   │   │   │   │   │   link.py
│   │   │   │   │   │   │   pylock.py
│   │   │   │   │   │   │   scheme.py
│   │   │   │   │   │   │   search_scope.py
│   │   │   │   │   │   │   selection_prefs.py
│   │   │   │   │   │   │   target_python.py
│   │   │   │   │   │   │   wheel.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   candidate.cpython-310.pyc
│   │   │   │   │   │   │   │   direct_url.cpython-310.pyc
│   │   │   │   │   │   │   │   format_control.cpython-310.pyc
│   │   │   │   │   │   │   │   index.cpython-310.pyc
│   │   │   │   │   │   │   │   installation_report.cpython-310.pyc
│   │   │   │   │   │   │   │   link.cpython-310.pyc
│   │   │   │   │   │   │   │   pylock.cpython-310.pyc
│   │   │   │   │   │   │   │   scheme.cpython-310.pyc
│   │   │   │   │   │   │   │   search_scope.cpython-310.pyc
│   │   │   │   │   │   │   │   selection_prefs.cpython-310.pyc
│   │   │   │   │   │   │   │   target_python.cpython-310.pyc
│   │   │   │   │   │   │   │   wheel.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── network/
│   │   │   │   │   │   │   auth.py
│   │   │   │   │   │   │   cache.py
│   │   │   │   │   │   │   download.py
│   │   │   │   │   │   │   lazy_wheel.py
│   │   │   │   │   │   │   session.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   xmlrpc.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   auth.cpython-310.pyc
│   │   │   │   │   │   │   │   cache.cpython-310.pyc
│   │   │   │   │   │   │   │   download.cpython-310.pyc
│   │   │   │   │   │   │   │   lazy_wheel.cpython-310.pyc
│   │   │   │   │   │   │   │   session.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   xmlrpc.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── operations/
│   │   │   │   │   │   │   check.py
│   │   │   │   │   │   │   freeze.py
│   │   │   │   │   │   │   prepare.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── build/
│   │   │   │   │   │   │   │   build_tracker.py
│   │   │   │   │   │   │   │   metadata.py
│   │   │   │   │   │   │   │   metadata_editable.py
│   │   │   │   │   │   │   │   wheel.py
│   │   │   │   │   │   │   │   wheel_editable.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   build_tracker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   metadata.cpython-310.pyc
│   │   │   │   │   │   │   │   │   metadata_editable.cpython-310.pyc
│   │   │   │   │   │   │   │   │   wheel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   wheel_editable.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── install/
│   │   │   │   │   │   │   │   wheel.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   wheel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   check.cpython-310.pyc
│   │   │   │   │   │   │   │   freeze.cpython-310.pyc
│   │   │   │   │   │   │   │   prepare.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── req/
│   │   │   │   │   │   │   constructors.py
│   │   │   │   │   │   │   req_dependency_group.py
│   │   │   │   │   │   │   req_file.py
│   │   │   │   │   │   │   req_install.py
│   │   │   │   │   │   │   req_set.py
│   │   │   │   │   │   │   req_uninstall.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   constructors.cpython-310.pyc
│   │   │   │   │   │   │   │   req_dependency_group.cpython-310.pyc
│   │   │   │   │   │   │   │   req_file.cpython-310.pyc
│   │   │   │   │   │   │   │   req_install.cpython-310.pyc
│   │   │   │   │   │   │   │   req_set.cpython-310.pyc
│   │   │   │   │   │   │   │   req_uninstall.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── resolution/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── legacy/
│   │   │   │   │   │   │   │   resolver.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   resolver.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── resolvelib/
│   │   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   │   candidates.py
│   │   │   │   │   │   │   │   factory.py
│   │   │   │   │   │   │   │   found_candidates.py
│   │   │   │   │   │   │   │   provider.py
│   │   │   │   │   │   │   │   reporter.py
│   │   │   │   │   │   │   │   requirements.py
│   │   │   │   │   │   │   │   resolver.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   │   candidates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   factory.cpython-310.pyc
│   │   │   │   │   │   │   │   │   found_candidates.cpython-310.pyc
│   │   │   │   │   │   │   │   │   provider.cpython-310.pyc
│   │   │   │   │   │   │   │   │   reporter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   requirements.cpython-310.pyc
│   │   │   │   │   │   │   │   │   resolver.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── utils/
│   │   │   │   │   │   │   appdirs.py
│   │   │   │   │   │   │   compat.py
│   │   │   │   │   │   │   compatibility_tags.py
│   │   │   │   │   │   │   datetime.py
│   │   │   │   │   │   │   deprecation.py
│   │   │   │   │   │   │   direct_url_helpers.py
│   │   │   │   │   │   │   egg_link.py
│   │   │   │   │   │   │   entrypoints.py
│   │   │   │   │   │   │   filesystem.py
│   │   │   │   │   │   │   filetypes.py
│   │   │   │   │   │   │   glibc.py
│   │   │   │   │   │   │   hashes.py
│   │   │   │   │   │   │   logging.py
│   │   │   │   │   │   │   misc.py
│   │   │   │   │   │   │   packaging.py
│   │   │   │   │   │   │   retry.py
│   │   │   │   │   │   │   subprocess.py
│   │   │   │   │   │   │   temp_dir.py
│   │   │   │   │   │   │   unpacking.py
│   │   │   │   │   │   │   urls.py
│   │   │   │   │   │   │   virtualenv.py
│   │   │   │   │   │   │   wheel.py
│   │   │   │   │   │   │   _jaraco_text.py
│   │   │   │   │   │   │   _log.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   appdirs.cpython-310.pyc
│   │   │   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   │   │   compatibility_tags.cpython-310.pyc
│   │   │   │   │   │   │   │   datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   deprecation.cpython-310.pyc
│   │   │   │   │   │   │   │   direct_url_helpers.cpython-310.pyc
│   │   │   │   │   │   │   │   egg_link.cpython-310.pyc
│   │   │   │   │   │   │   │   entrypoints.cpython-310.pyc
│   │   │   │   │   │   │   │   filesystem.cpython-310.pyc
│   │   │   │   │   │   │   │   filetypes.cpython-310.pyc
│   │   │   │   │   │   │   │   glibc.cpython-310.pyc
│   │   │   │   │   │   │   │   hashes.cpython-310.pyc
│   │   │   │   │   │   │   │   logging.cpython-310.pyc
│   │   │   │   │   │   │   │   misc.cpython-310.pyc
│   │   │   │   │   │   │   │   packaging.cpython-310.pyc
│   │   │   │   │   │   │   │   retry.cpython-310.pyc
│   │   │   │   │   │   │   │   subprocess.cpython-310.pyc
│   │   │   │   │   │   │   │   temp_dir.cpython-310.pyc
│   │   │   │   │   │   │   │   unpacking.cpython-310.pyc
│   │   │   │   │   │   │   │   urls.cpython-310.pyc
│   │   │   │   │   │   │   │   virtualenv.cpython-310.pyc
│   │   │   │   │   │   │   │   wheel.cpython-310.pyc
│   │   │   │   │   │   │   │   _jaraco_text.cpython-310.pyc
│   │   │   │   │   │   │   │   _log.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── vcs/
│   │   │   │   │   │   │   bazaar.py
│   │   │   │   │   │   │   git.py
│   │   │   │   │   │   │   mercurial.py
│   │   │   │   │   │   │   subversion.py
│   │   │   │   │   │   │   versioncontrol.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   bazaar.cpython-310.pyc
│   │   │   │   │   │   │   │   git.cpython-310.pyc
│   │   │   │   │   │   │   │   mercurial.cpython-310.pyc
│   │   │   │   │   │   │   │   subversion.cpython-310.pyc
│   │   │   │   │   │   │   │   versioncontrol.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   build_env.cpython-310.pyc
│   │   │   │   │   │   │   cache.cpython-310.pyc
│   │   │   │   │   │   │   configuration.cpython-310.pyc
│   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   main.cpython-310.pyc
│   │   │   │   │   │   │   pyproject.cpython-310.pyc
│   │   │   │   │   │   │   self_outdated_check.cpython-310.pyc
│   │   │   │   │   │   │   wheel_builder.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _vendor/
│   │   │   │   │   │   README.rst
│   │   │   │   │   │   vendor.txt
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── cachecontrol/
│   │   │   │   │   │   │   adapter.py
│   │   │   │   │   │   │   cache.py
│   │   │   │   │   │   │   controller.py
│   │   │   │   │   │   │   filewrapper.py
│   │   │   │   │   │   │   heuristics.py
│   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   serialize.py
│   │   │   │   │   │   │   wrapper.py
│   │   │   │   │   │   │   _cmd.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── caches/
│   │   │   │   │   │   │   │   file_cache.py
│   │   │   │   │   │   │   │   redis_cache.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   file_cache.cpython-310.pyc
│   │   │   │   │   │   │   │   │   redis_cache.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   adapter.cpython-310.pyc
│   │   │   │   │   │   │   │   cache.cpython-310.pyc
│   │   │   │   │   │   │   │   controller.cpython-310.pyc
│   │   │   │   │   │   │   │   filewrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   heuristics.cpython-310.pyc
│   │   │   │   │   │   │   │   serialize.cpython-310.pyc
│   │   │   │   │   │   │   │   wrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   _cmd.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── certifi/
│   │   │   │   │   │   │   cacert.pem
│   │   │   │   │   │   │   core.py
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── dependency_groups/
│   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   _implementation.py
│   │   │   │   │   │   │   _lint_dependency_groups.py
│   │   │   │   │   │   │   _pip_wrapper.py
│   │   │   │   │   │   │   _toml_compat.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _implementation.cpython-310.pyc
│   │   │   │   │   │   │   │   _lint_dependency_groups.cpython-310.pyc
│   │   │   │   │   │   │   │   _pip_wrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   _toml_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── distlib/
│   │   │   │   │   │   │   compat.py
│   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   │   resources.py
│   │   │   │   │   │   │   scripts.py
│   │   │   │   │   │   │   t32.exe
│   │   │   │   │   │   │   t64-arm.exe
│   │   │   │   │   │   │   t64.exe
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   w32.exe
│   │   │   │   │   │   │   w64-arm.exe
│   │   │   │   │   │   │   w64.exe
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   │   │   resources.cpython-310.pyc
│   │   │   │   │   │   │   │   scripts.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── distro/
│   │   │   │   │   │   │   distro.py
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   distro.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── idna/
│   │   │   │   │   │   │   codec.py
│   │   │   │   │   │   │   compat.py
│   │   │   │   │   │   │   core.py
│   │   │   │   │   │   │   idnadata.py
│   │   │   │   │   │   │   intranges.py
│   │   │   │   │   │   │   LICENSE.md
│   │   │   │   │   │   │   package_data.py
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   uts46data.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   codec.cpython-310.pyc
│   │   │   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   │   idnadata.cpython-310.pyc
│   │   │   │   │   │   │   │   intranges.cpython-310.pyc
│   │   │   │   │   │   │   │   package_data.cpython-310.pyc
│   │   │   │   │   │   │   │   uts46data.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── msgpack/
│   │   │   │   │   │   │   COPYING
│   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   ext.py
│   │   │   │   │   │   │   fallback.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   ext.cpython-310.pyc
│   │   │   │   │   │   │   │   fallback.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── packaging/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   LICENSE.APACHE
│   │   │   │   │   │   │   LICENSE.BSD
│   │   │   │   │   │   │   markers.py
│   │   │   │   │   │   │   metadata.py
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   requirements.py
│   │   │   │   │   │   │   specifiers.py
│   │   │   │   │   │   │   tags.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   version.py
│   │   │   │   │   │   │   _elffile.py
│   │   │   │   │   │   │   _manylinux.py
│   │   │   │   │   │   │   _musllinux.py
│   │   │   │   │   │   │   _parser.py
│   │   │   │   │   │   │   _structures.py
│   │   │   │   │   │   │   _tokenizer.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── licenses/
│   │   │   │   │   │   │   │   _spdx.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _spdx.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   markers.cpython-310.pyc
│   │   │   │   │   │   │   │   metadata.cpython-310.pyc
│   │   │   │   │   │   │   │   requirements.cpython-310.pyc
│   │   │   │   │   │   │   │   specifiers.cpython-310.pyc
│   │   │   │   │   │   │   │   tags.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   │   │   _elffile.cpython-310.pyc
│   │   │   │   │   │   │   │   _manylinux.cpython-310.pyc
│   │   │   │   │   │   │   │   _musllinux.cpython-310.pyc
│   │   │   │   │   │   │   │   _parser.cpython-310.pyc
│   │   │   │   │   │   │   │   _structures.cpython-310.pyc
│   │   │   │   │   │   │   │   _tokenizer.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── pkg_resources/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── platformdirs/
│   │   │   │   │   │   │   android.py
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   macos.py
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   unix.py
│   │   │   │   │   │   │   version.py
│   │   │   │   │   │   │   windows.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   android.cpython-310.pyc
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   macos.cpython-310.pyc
│   │   │   │   │   │   │   │   unix.cpython-310.pyc
│   │   │   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   │   │   windows.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── pygments/
│   │   │   │   │   │   │   console.py
│   │   │   │   │   │   │   filter.py
│   │   │   │   │   │   │   formatter.py
│   │   │   │   │   │   │   lexer.py
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   modeline.py
│   │   │   │   │   │   │   plugin.py
│   │   │   │   │   │   │   regexopt.py
│   │   │   │   │   │   │   scanner.py
│   │   │   │   │   │   │   sphinxext.py
│   │   │   │   │   │   │   style.py
│   │   │   │   │   │   │   token.py
│   │   │   │   │   │   │   unistring.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── filters/
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── formatters/
│   │   │   │   │   │   │   │   _mapping.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _mapping.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── lexers/
│   │   │   │   │   │   │   │   python.py
│   │   │   │   │   │   │   │   _mapping.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   python.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _mapping.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── styles/
│   │   │   │   │   │   │   │   _mapping.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _mapping.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   console.cpython-310.pyc
│   │   │   │   │   │   │   │   filter.cpython-310.pyc
│   │   │   │   │   │   │   │   formatter.cpython-310.pyc
│   │   │   │   │   │   │   │   lexer.cpython-310.pyc
│   │   │   │   │   │   │   │   modeline.cpython-310.pyc
│   │   │   │   │   │   │   │   plugin.cpython-310.pyc
│   │   │   │   │   │   │   │   regexopt.cpython-310.pyc
│   │   │   │   │   │   │   │   scanner.cpython-310.pyc
│   │   │   │   │   │   │   │   sphinxext.cpython-310.pyc
│   │   │   │   │   │   │   │   style.cpython-310.pyc
│   │   │   │   │   │   │   │   token.cpython-310.pyc
│   │   │   │   │   │   │   │   unistring.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── pyproject_hooks/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   _impl.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── _in_process/
│   │   │   │   │   │   │   │   _in_process.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _in_process.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _impl.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── requests/
│   │   │   │   │   │   │   adapters.py
│   │   │   │   │   │   │   api.py
│   │   │   │   │   │   │   auth.py
│   │   │   │   │   │   │   certs.py
│   │   │   │   │   │   │   compat.py
│   │   │   │   │   │   │   cookies.py
│   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   help.py
│   │   │   │   │   │   │   hooks.py
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   models.py
│   │   │   │   │   │   │   packages.py
│   │   │   │   │   │   │   sessions.py
│   │   │   │   │   │   │   status_codes.py
│   │   │   │   │   │   │   structures.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   _internal_utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __version__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   adapters.cpython-310.pyc
│   │   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   │   auth.cpython-310.pyc
│   │   │   │   │   │   │   │   certs.cpython-310.pyc
│   │   │   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   │   │   cookies.cpython-310.pyc
│   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   help.cpython-310.pyc
│   │   │   │   │   │   │   │   hooks.cpython-310.pyc
│   │   │   │   │   │   │   │   models.cpython-310.pyc
│   │   │   │   │   │   │   │   packages.cpython-310.pyc
│   │   │   │   │   │   │   │   sessions.cpython-310.pyc
│   │   │   │   │   │   │   │   status_codes.cpython-310.pyc
│   │   │   │   │   │   │   │   structures.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   _internal_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __version__.cpython-310.pyc
│   │   │   │   │   │   ├── resolvelib/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   providers.py
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   reporters.py
│   │   │   │   │   │   │   structs.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── resolvers/
│   │   │   │   │   │   │   │   abstract.py
│   │   │   │   │   │   │   │   criterion.py
│   │   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   │   resolution.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   abstract.cpython-310.pyc
│   │   │   │   │   │   │   │   │   criterion.cpython-310.pyc
│   │   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   resolution.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   providers.cpython-310.pyc
│   │   │   │   │   │   │   │   reporters.cpython-310.pyc
│   │   │   │   │   │   │   │   structs.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── rich/
│   │   │   │   │   │   │   abc.py
│   │   │   │   │   │   │   align.py
│   │   │   │   │   │   │   ansi.py
│   │   │   │   │   │   │   bar.py
│   │   │   │   │   │   │   box.py
│   │   │   │   │   │   │   cells.py
│   │   │   │   │   │   │   color.py
│   │   │   │   │   │   │   color_triplet.py
│   │   │   │   │   │   │   columns.py
│   │   │   │   │   │   │   console.py
│   │   │   │   │   │   │   constrain.py
│   │   │   │   │   │   │   containers.py
│   │   │   │   │   │   │   control.py
│   │   │   │   │   │   │   default_styles.py
│   │   │   │   │   │   │   diagnose.py
│   │   │   │   │   │   │   emoji.py
│   │   │   │   │   │   │   errors.py
│   │   │   │   │   │   │   filesize.py
│   │   │   │   │   │   │   file_proxy.py
│   │   │   │   │   │   │   highlighter.py
│   │   │   │   │   │   │   json.py
│   │   │   │   │   │   │   jupyter.py
│   │   │   │   │   │   │   layout.py
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   live.py
│   │   │   │   │   │   │   live_render.py
│   │   │   │   │   │   │   logging.py
│   │   │   │   │   │   │   markup.py
│   │   │   │   │   │   │   measure.py
│   │   │   │   │   │   │   padding.py
│   │   │   │   │   │   │   pager.py
│   │   │   │   │   │   │   palette.py
│   │   │   │   │   │   │   panel.py
│   │   │   │   │   │   │   pretty.py
│   │   │   │   │   │   │   progress.py
│   │   │   │   │   │   │   progress_bar.py
│   │   │   │   │   │   │   prompt.py
│   │   │   │   │   │   │   protocol.py
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   region.py
│   │   │   │   │   │   │   repr.py
│   │   │   │   │   │   │   rule.py
│   │   │   │   │   │   │   scope.py
│   │   │   │   │   │   │   screen.py
│   │   │   │   │   │   │   segment.py
│   │   │   │   │   │   │   spinner.py
│   │   │   │   │   │   │   status.py
│   │   │   │   │   │   │   style.py
│   │   │   │   │   │   │   styled.py
│   │   │   │   │   │   │   syntax.py
│   │   │   │   │   │   │   table.py
│   │   │   │   │   │   │   terminal_theme.py
│   │   │   │   │   │   │   text.py
│   │   │   │   │   │   │   theme.py
│   │   │   │   │   │   │   themes.py
│   │   │   │   │   │   │   traceback.py
│   │   │   │   │   │   │   tree.py
│   │   │   │   │   │   │   _cell_widths.py
│   │   │   │   │   │   │   _emoji_codes.py
│   │   │   │   │   │   │   _emoji_replace.py
│   │   │   │   │   │   │   _export_format.py
│   │   │   │   │   │   │   _extension.py
│   │   │   │   │   │   │   _fileno.py
│   │   │   │   │   │   │   _inspect.py
│   │   │   │   │   │   │   _log_render.py
│   │   │   │   │   │   │   _loop.py
│   │   │   │   │   │   │   _null_file.py
│   │   │   │   │   │   │   _palettes.py
│   │   │   │   │   │   │   _pick.py
│   │   │   │   │   │   │   _ratio.py
│   │   │   │   │   │   │   _spinners.py
│   │   │   │   │   │   │   _stack.py
│   │   │   │   │   │   │   _timer.py
│   │   │   │   │   │   │   _win32_console.py
│   │   │   │   │   │   │   _windows.py
│   │   │   │   │   │   │   _windows_renderer.py
│   │   │   │   │   │   │   _wrap.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   __main__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   abc.cpython-310.pyc
│   │   │   │   │   │   │   │   align.cpython-310.pyc
│   │   │   │   │   │   │   │   ansi.cpython-310.pyc
│   │   │   │   │   │   │   │   bar.cpython-310.pyc
│   │   │   │   │   │   │   │   box.cpython-310.pyc
│   │   │   │   │   │   │   │   cells.cpython-310.pyc
│   │   │   │   │   │   │   │   color.cpython-310.pyc
│   │   │   │   │   │   │   │   color_triplet.cpython-310.pyc
│   │   │   │   │   │   │   │   columns.cpython-310.pyc
│   │   │   │   │   │   │   │   console.cpython-310.pyc
│   │   │   │   │   │   │   │   constrain.cpython-310.pyc
│   │   │   │   │   │   │   │   containers.cpython-310.pyc
│   │   │   │   │   │   │   │   control.cpython-310.pyc
│   │   │   │   │   │   │   │   default_styles.cpython-310.pyc
│   │   │   │   │   │   │   │   diagnose.cpython-310.pyc
│   │   │   │   │   │   │   │   emoji.cpython-310.pyc
│   │   │   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   │   │   filesize.cpython-310.pyc
│   │   │   │   │   │   │   │   file_proxy.cpython-310.pyc
│   │   │   │   │   │   │   │   highlighter.cpython-310.pyc
│   │   │   │   │   │   │   │   json.cpython-310.pyc
│   │   │   │   │   │   │   │   jupyter.cpython-310.pyc
│   │   │   │   │   │   │   │   layout.cpython-310.pyc
│   │   │   │   │   │   │   │   live.cpython-310.pyc
│   │   │   │   │   │   │   │   live_render.cpython-310.pyc
│   │   │   │   │   │   │   │   logging.cpython-310.pyc
│   │   │   │   │   │   │   │   markup.cpython-310.pyc
│   │   │   │   │   │   │   │   measure.cpython-310.pyc
│   │   │   │   │   │   │   │   padding.cpython-310.pyc
│   │   │   │   │   │   │   │   pager.cpython-310.pyc
│   │   │   │   │   │   │   │   palette.cpython-310.pyc
│   │   │   │   │   │   │   │   panel.cpython-310.pyc
│   │   │   │   │   │   │   │   pretty.cpython-310.pyc
│   │   │   │   │   │   │   │   progress.cpython-310.pyc
│   │   │   │   │   │   │   │   progress_bar.cpython-310.pyc
│   │   │   │   │   │   │   │   prompt.cpython-310.pyc
│   │   │   │   │   │   │   │   protocol.cpython-310.pyc
│   │   │   │   │   │   │   │   region.cpython-310.pyc
│   │   │   │   │   │   │   │   repr.cpython-310.pyc
│   │   │   │   │   │   │   │   rule.cpython-310.pyc
│   │   │   │   │   │   │   │   scope.cpython-310.pyc
│   │   │   │   │   │   │   │   screen.cpython-310.pyc
│   │   │   │   │   │   │   │   segment.cpython-310.pyc
│   │   │   │   │   │   │   │   spinner.cpython-310.pyc
│   │   │   │   │   │   │   │   status.cpython-310.pyc
│   │   │   │   │   │   │   │   style.cpython-310.pyc
│   │   │   │   │   │   │   │   styled.cpython-310.pyc
│   │   │   │   │   │   │   │   syntax.cpython-310.pyc
│   │   │   │   │   │   │   │   table.cpython-310.pyc
│   │   │   │   │   │   │   │   terminal_theme.cpython-310.pyc
│   │   │   │   │   │   │   │   text.cpython-310.pyc
│   │   │   │   │   │   │   │   theme.cpython-310.pyc
│   │   │   │   │   │   │   │   themes.cpython-310.pyc
│   │   │   │   │   │   │   │   traceback.cpython-310.pyc
│   │   │   │   │   │   │   │   tree.cpython-310.pyc
│   │   │   │   │   │   │   │   _cell_widths.cpython-310.pyc
│   │   │   │   │   │   │   │   _emoji_codes.cpython-310.pyc
│   │   │   │   │   │   │   │   _emoji_replace.cpython-310.pyc
│   │   │   │   │   │   │   │   _export_format.cpython-310.pyc
│   │   │   │   │   │   │   │   _extension.cpython-310.pyc
│   │   │   │   │   │   │   │   _fileno.cpython-310.pyc
│   │   │   │   │   │   │   │   _inspect.cpython-310.pyc
│   │   │   │   │   │   │   │   _log_render.cpython-310.pyc
│   │   │   │   │   │   │   │   _loop.cpython-310.pyc
│   │   │   │   │   │   │   │   _null_file.cpython-310.pyc
│   │   │   │   │   │   │   │   _palettes.cpython-310.pyc
│   │   │   │   │   │   │   │   _pick.cpython-310.pyc
│   │   │   │   │   │   │   │   _ratio.cpython-310.pyc
│   │   │   │   │   │   │   │   _spinners.cpython-310.pyc
│   │   │   │   │   │   │   │   _stack.cpython-310.pyc
│   │   │   │   │   │   │   │   _timer.cpython-310.pyc
│   │   │   │   │   │   │   │   _win32_console.cpython-310.pyc
│   │   │   │   │   │   │   │   _windows.cpython-310.pyc
│   │   │   │   │   │   │   │   _windows_renderer.cpython-310.pyc
│   │   │   │   │   │   │   │   _wrap.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   ├── tomli/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   _parser.py
│   │   │   │   │   │   │   _re.py
│   │   │   │   │   │   │   _types.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _parser.cpython-310.pyc
│   │   │   │   │   │   │   │   _re.cpython-310.pyc
│   │   │   │   │   │   │   │   _types.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tomli_w/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   _writer.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _writer.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── truststore/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   py.typed
│   │   │   │   │   │   │   _api.py
│   │   │   │   │   │   │   _macos.py
│   │   │   │   │   │   │   _openssl.py
│   │   │   │   │   │   │   _ssl_constants.py
│   │   │   │   │   │   │   _windows.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _api.cpython-310.pyc
│   │   │   │   │   │   │   │   _macos.cpython-310.pyc
│   │   │   │   │   │   │   │   _openssl.cpython-310.pyc
│   │   │   │   │   │   │   │   _ssl_constants.cpython-310.pyc
│   │   │   │   │   │   │   │   _windows.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── urllib3/
│   │   │   │   │   │   │   connection.py
│   │   │   │   │   │   │   connectionpool.py
│   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   fields.py
│   │   │   │   │   │   │   filepost.py
│   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   │   poolmanager.py
│   │   │   │   │   │   │   request.py
│   │   │   │   │   │   │   response.py
│   │   │   │   │   │   │   _collections.py
│   │   │   │   │   │   │   _version.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── contrib/
│   │   │   │   │   │   │   │   appengine.py
│   │   │   │   │   │   │   │   ntlmpool.py
│   │   │   │   │   │   │   │   pyopenssl.py
│   │   │   │   │   │   │   │   securetransport.py
│   │   │   │   │   │   │   │   socks.py
│   │   │   │   │   │   │   │   _appengine_environ.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── _securetransport/
│   │   │   │   │   │   │   │   │   bindings.py
│   │   │   │   │   │   │   │   │   low_level.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   bindings.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   low_level.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   appengine.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ntlmpool.cpython-310.pyc
│   │   │   │   │   │   │   │   │   pyopenssl.cpython-310.pyc
│   │   │   │   │   │   │   │   │   securetransport.cpython-310.pyc
│   │   │   │   │   │   │   │   │   socks.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _appengine_environ.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── packages/
│   │   │   │   │   │   │   │   six.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── backports/
│   │   │   │   │   │   │   │   │   makefile.py
│   │   │   │   │   │   │   │   │   weakref_finalize.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   makefile.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   weakref_finalize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   six.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── util/
│   │   │   │   │   │   │   │   connection.py
│   │   │   │   │   │   │   │   proxy.py
│   │   │   │   │   │   │   │   queue.py
│   │   │   │   │   │   │   │   request.py
│   │   │   │   │   │   │   │   response.py
│   │   │   │   │   │   │   │   retry.py
│   │   │   │   │   │   │   │   ssltransport.py
│   │   │   │   │   │   │   │   ssl_.py
│   │   │   │   │   │   │   │   ssl_match_hostname.py
│   │   │   │   │   │   │   │   timeout.py
│   │   │   │   │   │   │   │   url.py
│   │   │   │   │   │   │   │   wait.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   connection.cpython-310.pyc
│   │   │   │   │   │   │   │   │   proxy.cpython-310.pyc
│   │   │   │   │   │   │   │   │   queue.cpython-310.pyc
│   │   │   │   │   │   │   │   │   request.cpython-310.pyc
│   │   │   │   │   │   │   │   │   response.cpython-310.pyc
│   │   │   │   │   │   │   │   │   retry.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ssltransport.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ssl_.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ssl_match_hostname.cpython-310.pyc
│   │   │   │   │   │   │   │   │   timeout.cpython-310.pyc
│   │   │   │   │   │   │   │   │   url.cpython-310.pyc
│   │   │   │   │   │   │   │   │   wait.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   connection.cpython-310.pyc
│   │   │   │   │   │   │   │   connectionpool.cpython-310.pyc
│   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   fields.cpython-310.pyc
│   │   │   │   │   │   │   │   filepost.cpython-310.pyc
│   │   │   │   │   │   │   │   poolmanager.cpython-310.pyc
│   │   │   │   │   │   │   │   request.cpython-310.pyc
│   │   │   │   │   │   │   │   response.cpython-310.pyc
│   │   │   │   │   │   │   │   _collections.cpython-310.pyc
│   │   │   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   │   __pip-runner__.cpython-310.pyc
│   │   │   │   ├── pip-25.3.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   AUTHORS.txt
│   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   ├── src/
│   │   │   │   │   │   │   ├── pip/
│   │   │   │   │   │   │   │   ├── _vendor/
│   │   │   │   │   │   │   │   │   ├── cachecontrol/
│   │   │   │   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   │   │   │   ├── certifi/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── dependency_groups/
│   │   │   │   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   │   │   │   ├── distlib/
│   │   │   │   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   │   │   │   │   │   ├── distro/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── idna/
│   │   │   │   │   │   │   │   │   │   LICENSE.md
│   │   │   │   │   │   │   │   │   ├── msgpack/
│   │   │   │   │   │   │   │   │   │   COPYING
│   │   │   │   │   │   │   │   │   ├── packaging/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   │   LICENSE.APACHE
│   │   │   │   │   │   │   │   │   │   LICENSE.BSD
│   │   │   │   │   │   │   │   │   ├── pkg_resources/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── platformdirs/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── pygments/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── pyproject_hooks/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── requests/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── resolvelib/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── rich/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── tomli/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── tomli_w/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── truststore/
│   │   │   │   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   │   │   ├── urllib3/
│   │   │   │   │   │   │   │   │   │   LICENSE.txt
│   │   │   │   ├── pkg_resources/
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── extern/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _vendor/
│   │   │   │   │   │   appdirs.py
│   │   │   │   │   │   zipp.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── importlib_resources/
│   │   │   │   │   │   │   abc.py
│   │   │   │   │   │   │   readers.py
│   │   │   │   │   │   │   simple.py
│   │   │   │   │   │   │   _adapters.py
│   │   │   │   │   │   │   _common.py
│   │   │   │   │   │   │   _compat.py
│   │   │   │   │   │   │   _itertools.py
│   │   │   │   │   │   │   _legacy.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   abc.cpython-310.pyc
│   │   │   │   │   │   │   │   readers.cpython-310.pyc
│   │   │   │   │   │   │   │   simple.cpython-310.pyc
│   │   │   │   │   │   │   │   _adapters.cpython-310.pyc
│   │   │   │   │   │   │   │   _common.cpython-310.pyc
│   │   │   │   │   │   │   │   _compat.cpython-310.pyc
│   │   │   │   │   │   │   │   _itertools.cpython-310.pyc
│   │   │   │   │   │   │   │   _legacy.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── jaraco/
│   │   │   │   │   │   │   context.py
│   │   │   │   │   │   │   functools.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── text/
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   context.cpython-310.pyc
│   │   │   │   │   │   │   │   functools.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── more_itertools/
│   │   │   │   │   │   │   more.py
│   │   │   │   │   │   │   recipes.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   more.cpython-310.pyc
│   │   │   │   │   │   │   │   recipes.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── packaging/
│   │   │   │   │   │   │   markers.py
│   │   │   │   │   │   │   requirements.py
│   │   │   │   │   │   │   specifiers.py
│   │   │   │   │   │   │   tags.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   version.py
│   │   │   │   │   │   │   _manylinux.py
│   │   │   │   │   │   │   _musllinux.py
│   │   │   │   │   │   │   _structures.py
│   │   │   │   │   │   │   __about__.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   markers.cpython-310.pyc
│   │   │   │   │   │   │   │   requirements.cpython-310.pyc
│   │   │   │   │   │   │   │   specifiers.cpython-310.pyc
│   │   │   │   │   │   │   │   tags.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   │   │   _manylinux.cpython-310.pyc
│   │   │   │   │   │   │   │   _musllinux.cpython-310.pyc
│   │   │   │   │   │   │   │   _structures.cpython-310.pyc
│   │   │   │   │   │   │   │   __about__.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── pyparsing/
│   │   │   │   │   │   │   actions.py
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   core.py
│   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   helpers.py
│   │   │   │   │   │   │   results.py
│   │   │   │   │   │   │   testing.py
│   │   │   │   │   │   │   unicode.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── diagram/
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   actions.cpython-310.pyc
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   helpers.cpython-310.pyc
│   │   │   │   │   │   │   │   results.cpython-310.pyc
│   │   │   │   │   │   │   │   testing.cpython-310.pyc
│   │   │   │   │   │   │   │   unicode.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   appdirs.cpython-310.pyc
│   │   │   │   │   │   │   zipp.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── plotly/
│   │   │   │   │   animation.py
│   │   │   │   │   basedatatypes.py
│   │   │   │   │   basewidget.py
│   │   │   │   │   callbacks.py
│   │   │   │   │   conftest.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   files.py
│   │   │   │   │   missing_anywidget.py
│   │   │   │   │   optional_imports.py
│   │   │   │   │   serializers.py
│   │   │   │   │   shapeannotation.py
│   │   │   │   │   subplots.py
│   │   │   │   │   tools.py
│   │   │   │   │   utils.py
│   │   │   │   │   validator_cache.py
│   │   │   │   │   _subplots.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── api/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── colors/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── data/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── express/
│   │   │   │   │   │   imshow_utils.py
│   │   │   │   │   │   _chart_types.py
│   │   │   │   │   │   _core.py
│   │   │   │   │   │   _doc.py
│   │   │   │   │   │   _imshow.py
│   │   │   │   │   │   _special_inputs.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── colors/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── trendline_functions/
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   imshow_utils.cpython-310.pyc
│   │   │   │   │   │   │   _chart_types.cpython-310.pyc
│   │   │   │   │   │   │   _core.cpython-310.pyc
│   │   │   │   │   │   │   _doc.cpython-310.pyc
│   │   │   │   │   │   │   _imshow.cpython-310.pyc
│   │   │   │   │   │   │   _special_inputs.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── figure_factory/
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   _2d_density.py
│   │   │   │   │   │   _annotated_heatmap.py
│   │   │   │   │   │   _bullet.py
│   │   │   │   │   │   _candlestick.py
│   │   │   │   │   │   _county_choropleth.py
│   │   │   │   │   │   _dendrogram.py
│   │   │   │   │   │   _distplot.py
│   │   │   │   │   │   _facet_grid.py
│   │   │   │   │   │   _gantt.py
│   │   │   │   │   │   _hexbin_map.py
│   │   │   │   │   │   _ohlc.py
│   │   │   │   │   │   _quiver.py
│   │   │   │   │   │   _scatterplot.py
│   │   │   │   │   │   _streamline.py
│   │   │   │   │   │   _table.py
│   │   │   │   │   │   _ternary_contour.py
│   │   │   │   │   │   _trisurf.py
│   │   │   │   │   │   _violin.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   _2d_density.cpython-310.pyc
│   │   │   │   │   │   │   _annotated_heatmap.cpython-310.pyc
│   │   │   │   │   │   │   _bullet.cpython-310.pyc
│   │   │   │   │   │   │   _candlestick.cpython-310.pyc
│   │   │   │   │   │   │   _county_choropleth.cpython-310.pyc
│   │   │   │   │   │   │   _dendrogram.cpython-310.pyc
│   │   │   │   │   │   │   _distplot.cpython-310.pyc
│   │   │   │   │   │   │   _facet_grid.cpython-310.pyc
│   │   │   │   │   │   │   _gantt.cpython-310.pyc
│   │   │   │   │   │   │   _hexbin_map.cpython-310.pyc
│   │   │   │   │   │   │   _ohlc.cpython-310.pyc
│   │   │   │   │   │   │   _quiver.cpython-310.pyc
│   │   │   │   │   │   │   _scatterplot.cpython-310.pyc
│   │   │   │   │   │   │   _streamline.cpython-310.pyc
│   │   │   │   │   │   │   _table.cpython-310.pyc
│   │   │   │   │   │   │   _ternary_contour.cpython-310.pyc
│   │   │   │   │   │   │   _trisurf.cpython-310.pyc
│   │   │   │   │   │   │   _violin.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── graph_objects/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── graph_objs/
│   │   │   │   │   │   graph_objs.py
│   │   │   │   │   │   _bar.py
│   │   │   │   │   │   _barpolar.py
│   │   │   │   │   │   _box.py
│   │   │   │   │   │   _candlestick.py
│   │   │   │   │   │   _carpet.py
│   │   │   │   │   │   _choropleth.py
│   │   │   │   │   │   _choroplethmap.py
│   │   │   │   │   │   _choroplethmapbox.py
│   │   │   │   │   │   _cone.py
│   │   │   │   │   │   _contour.py
│   │   │   │   │   │   _contourcarpet.py
│   │   │   │   │   │   _densitymap.py
│   │   │   │   │   │   _densitymapbox.py
│   │   │   │   │   │   _deprecations.py
│   │   │   │   │   │   _figure.py
│   │   │   │   │   │   _figurewidget.py
│   │   │   │   │   │   _frame.py
│   │   │   │   │   │   _funnel.py
│   │   │   │   │   │   _funnelarea.py
│   │   │   │   │   │   _heatmap.py
│   │   │   │   │   │   _histogram.py
│   │   │   │   │   │   _histogram2d.py
│   │   │   │   │   │   _histogram2dcontour.py
│   │   │   │   │   │   _icicle.py
│   │   │   │   │   │   _image.py
│   │   │   │   │   │   _indicator.py
│   │   │   │   │   │   _isosurface.py
│   │   │   │   │   │   _layout.py
│   │   │   │   │   │   _mesh3d.py
│   │   │   │   │   │   _ohlc.py
│   │   │   │   │   │   _parcats.py
│   │   │   │   │   │   _parcoords.py
│   │   │   │   │   │   _pie.py
│   │   │   │   │   │   _sankey.py
│   │   │   │   │   │   _scatter.py
│   │   │   │   │   │   _scatter3d.py
│   │   │   │   │   │   _scattercarpet.py
│   │   │   │   │   │   _scattergeo.py
│   │   │   │   │   │   _scattergl.py
│   │   │   │   │   │   _scattermap.py
│   │   │   │   │   │   _scattermapbox.py
│   │   │   │   │   │   _scatterpolar.py
│   │   │   │   │   │   _scatterpolargl.py
│   │   │   │   │   │   _scattersmith.py
│   │   │   │   │   │   _scatterternary.py
│   │   │   │   │   │   _splom.py
│   │   │   │   │   │   _streamtube.py
│   │   │   │   │   │   _sunburst.py
│   │   │   │   │   │   _surface.py
│   │   │   │   │   │   _table.py
│   │   │   │   │   │   _treemap.py
│   │   │   │   │   │   _violin.py
│   │   │   │   │   │   _volume.py
│   │   │   │   │   │   _waterfall.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── bar/
│   │   │   │   │   │   │   _error_x.py
│   │   │   │   │   │   │   _error_y.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _error_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _error_y.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── barpolar/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── box/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── candlestick/
│   │   │   │   │   │   │   _decreasing.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _increasing.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── decreasing/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── increasing/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _decreasing.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _increasing.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── carpet/
│   │   │   │   │   │   │   _aaxis.py
│   │   │   │   │   │   │   _baxis.py
│   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── aaxis/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── baxis/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _aaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   _baxis.cpython-310.pyc
│   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── choropleth/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── choroplethmap/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── choroplethmapbox/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── cone/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _lighting.py
│   │   │   │   │   │   │   _lightposition.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _lighting.cpython-310.pyc
│   │   │   │   │   │   │   │   _lightposition.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── contour/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _contours.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── contours/
│   │   │   │   │   │   │   │   _labelfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _labelfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _contours.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── contourcarpet/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _contours.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── contours/
│   │   │   │   │   │   │   │   _labelfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _labelfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _contours.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── densitymap/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── densitymapbox/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── funnel/
│   │   │   │   │   │   │   _connector.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── connector/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _connector.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── funnelarea/
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── heatmap/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── histogram/
│   │   │   │   │   │   │   _cumulative.py
│   │   │   │   │   │   │   _error_x.py
│   │   │   │   │   │   │   _error_y.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   _xbins.py
│   │   │   │   │   │   │   _ybins.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _cumulative.cpython-310.pyc
│   │   │   │   │   │   │   │   _error_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _error_y.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   _xbins.cpython-310.pyc
│   │   │   │   │   │   │   │   _ybins.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── histogram2d/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _xbins.py
│   │   │   │   │   │   │   _ybins.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _xbins.cpython-310.pyc
│   │   │   │   │   │   │   │   _ybins.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── histogram2dcontour/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _contours.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _xbins.py
│   │   │   │   │   │   │   _ybins.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── contours/
│   │   │   │   │   │   │   │   _labelfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _labelfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _contours.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _xbins.cpython-310.pyc
│   │   │   │   │   │   │   │   _ybins.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── icicle/
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _leaf.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _pathbar.py
│   │   │   │   │   │   │   _root.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _tiling.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── pathbar/
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _leaf.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _pathbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _root.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _tiling.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── image/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── indicator/
│   │   │   │   │   │   │   _delta.py
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _gauge.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _number.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── delta/
│   │   │   │   │   │   │   │   _decreasing.py
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _increasing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _decreasing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _increasing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── gauge/
│   │   │   │   │   │   │   │   _axis.py
│   │   │   │   │   │   │   │   _bar.py
│   │   │   │   │   │   │   │   _step.py
│   │   │   │   │   │   │   │   _threshold.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── axis/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── bar/
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── step/
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── threshold/
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _axis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _bar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _step.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _threshold.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── number/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _delta.cpython-310.pyc
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _gauge.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _number.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── isosurface/
│   │   │   │   │   │   │   _caps.py
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _contour.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _lighting.py
│   │   │   │   │   │   │   _lightposition.py
│   │   │   │   │   │   │   _slices.py
│   │   │   │   │   │   │   _spaceframe.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _surface.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── caps/
│   │   │   │   │   │   │   │   _x.py
│   │   │   │   │   │   │   │   _y.py
│   │   │   │   │   │   │   │   _z.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _x.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _y.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _z.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── slices/
│   │   │   │   │   │   │   │   _x.py
│   │   │   │   │   │   │   │   _y.py
│   │   │   │   │   │   │   │   _z.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _x.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _y.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _z.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _caps.cpython-310.pyc
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _contour.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _lighting.cpython-310.pyc
│   │   │   │   │   │   │   │   _lightposition.cpython-310.pyc
│   │   │   │   │   │   │   │   _slices.cpython-310.pyc
│   │   │   │   │   │   │   │   _spaceframe.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _surface.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── layout/
│   │   │   │   │   │   │   _activeselection.py
│   │   │   │   │   │   │   _activeshape.py
│   │   │   │   │   │   │   _annotation.py
│   │   │   │   │   │   │   _coloraxis.py
│   │   │   │   │   │   │   _colorscale.py
│   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   _geo.py
│   │   │   │   │   │   │   _grid.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _image.py
│   │   │   │   │   │   │   _legend.py
│   │   │   │   │   │   │   _map.py
│   │   │   │   │   │   │   _mapbox.py
│   │   │   │   │   │   │   _margin.py
│   │   │   │   │   │   │   _modebar.py
│   │   │   │   │   │   │   _newselection.py
│   │   │   │   │   │   │   _newshape.py
│   │   │   │   │   │   │   _polar.py
│   │   │   │   │   │   │   _scene.py
│   │   │   │   │   │   │   _selection.py
│   │   │   │   │   │   │   _shape.py
│   │   │   │   │   │   │   _slider.py
│   │   │   │   │   │   │   _smith.py
│   │   │   │   │   │   │   _template.py
│   │   │   │   │   │   │   _ternary.py
│   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   _transition.py
│   │   │   │   │   │   │   _uniformtext.py
│   │   │   │   │   │   │   _updatemenu.py
│   │   │   │   │   │   │   _xaxis.py
│   │   │   │   │   │   │   _yaxis.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── annotation/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── coloraxis/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── geo/
│   │   │   │   │   │   │   │   _center.py
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   _lataxis.py
│   │   │   │   │   │   │   │   _lonaxis.py
│   │   │   │   │   │   │   │   _projection.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── projection/
│   │   │   │   │   │   │   │   │   _rotation.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _rotation.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _center.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _lataxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _lonaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _projection.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── grid/
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _grouptitlefont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _grouptitlefont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legend/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _grouptitlefont.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _grouptitlefont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── map/
│   │   │   │   │   │   │   │   _bounds.py
│   │   │   │   │   │   │   │   _center.py
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   _layer.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── layer/
│   │   │   │   │   │   │   │   │   _circle.py
│   │   │   │   │   │   │   │   │   _fill.py
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   _symbol.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── symbol/
│   │   │   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _circle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _fill.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _symbol.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _bounds.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _center.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _layer.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── mapbox/
│   │   │   │   │   │   │   │   _bounds.py
│   │   │   │   │   │   │   │   _center.py
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   _layer.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── layer/
│   │   │   │   │   │   │   │   │   _circle.py
│   │   │   │   │   │   │   │   │   _fill.py
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   _symbol.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── symbol/
│   │   │   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _circle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _fill.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _symbol.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _bounds.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _center.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _layer.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── newselection/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── newshape/
│   │   │   │   │   │   │   │   _label.py
│   │   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── label/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _label.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── polar/
│   │   │   │   │   │   │   │   _angularaxis.py
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   _radialaxis.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── angularaxis/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── radialaxis/
│   │   │   │   │   │   │   │   │   _autorangeoptions.py
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _autorangeoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _angularaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _radialaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── scene/
│   │   │   │   │   │   │   │   _annotation.py
│   │   │   │   │   │   │   │   _aspectratio.py
│   │   │   │   │   │   │   │   _camera.py
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   _xaxis.py
│   │   │   │   │   │   │   │   _yaxis.py
│   │   │   │   │   │   │   │   _zaxis.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── annotation/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── camera/
│   │   │   │   │   │   │   │   │   _center.py
│   │   │   │   │   │   │   │   │   _eye.py
│   │   │   │   │   │   │   │   │   _projection.py
│   │   │   │   │   │   │   │   │   _up.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _center.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _eye.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _projection.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _up.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── xaxis/
│   │   │   │   │   │   │   │   │   _autorangeoptions.py
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _autorangeoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── yaxis/
│   │   │   │   │   │   │   │   │   _autorangeoptions.py
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _autorangeoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── zaxis/
│   │   │   │   │   │   │   │   │   _autorangeoptions.py
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _autorangeoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _annotation.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _aspectratio.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _camera.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _xaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _yaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _zaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selection/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── shape/
│   │   │   │   │   │   │   │   _label.py
│   │   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── label/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _label.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── slider/
│   │   │   │   │   │   │   │   _currentvalue.py
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _pad.py
│   │   │   │   │   │   │   │   _step.py
│   │   │   │   │   │   │   │   _transition.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── currentvalue/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _currentvalue.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pad.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _step.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _transition.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── smith/
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   _imaginaryaxis.py
│   │   │   │   │   │   │   │   _realaxis.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── imaginaryaxis/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── realaxis/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _imaginaryaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _realaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── template/
│   │   │   │   │   │   │   │   _data.py
│   │   │   │   │   │   │   │   _layout.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   │   _bar.py
│   │   │   │   │   │   │   │   │   _barpolar.py
│   │   │   │   │   │   │   │   │   _box.py
│   │   │   │   │   │   │   │   │   _candlestick.py
│   │   │   │   │   │   │   │   │   _carpet.py
│   │   │   │   │   │   │   │   │   _choropleth.py
│   │   │   │   │   │   │   │   │   _choroplethmap.py
│   │   │   │   │   │   │   │   │   _choroplethmapbox.py
│   │   │   │   │   │   │   │   │   _cone.py
│   │   │   │   │   │   │   │   │   _contour.py
│   │   │   │   │   │   │   │   │   _contourcarpet.py
│   │   │   │   │   │   │   │   │   _densitymap.py
│   │   │   │   │   │   │   │   │   _densitymapbox.py
│   │   │   │   │   │   │   │   │   _funnel.py
│   │   │   │   │   │   │   │   │   _funnelarea.py
│   │   │   │   │   │   │   │   │   _heatmap.py
│   │   │   │   │   │   │   │   │   _histogram.py
│   │   │   │   │   │   │   │   │   _histogram2d.py
│   │   │   │   │   │   │   │   │   _histogram2dcontour.py
│   │   │   │   │   │   │   │   │   _icicle.py
│   │   │   │   │   │   │   │   │   _image.py
│   │   │   │   │   │   │   │   │   _indicator.py
│   │   │   │   │   │   │   │   │   _isosurface.py
│   │   │   │   │   │   │   │   │   _mesh3d.py
│   │   │   │   │   │   │   │   │   _ohlc.py
│   │   │   │   │   │   │   │   │   _parcats.py
│   │   │   │   │   │   │   │   │   _parcoords.py
│   │   │   │   │   │   │   │   │   _pie.py
│   │   │   │   │   │   │   │   │   _sankey.py
│   │   │   │   │   │   │   │   │   _scatter.py
│   │   │   │   │   │   │   │   │   _scatter3d.py
│   │   │   │   │   │   │   │   │   _scattercarpet.py
│   │   │   │   │   │   │   │   │   _scattergeo.py
│   │   │   │   │   │   │   │   │   _scattergl.py
│   │   │   │   │   │   │   │   │   _scattermap.py
│   │   │   │   │   │   │   │   │   _scattermapbox.py
│   │   │   │   │   │   │   │   │   _scatterpolar.py
│   │   │   │   │   │   │   │   │   _scatterpolargl.py
│   │   │   │   │   │   │   │   │   _scattersmith.py
│   │   │   │   │   │   │   │   │   _scatterternary.py
│   │   │   │   │   │   │   │   │   _splom.py
│   │   │   │   │   │   │   │   │   _streamtube.py
│   │   │   │   │   │   │   │   │   _sunburst.py
│   │   │   │   │   │   │   │   │   _surface.py
│   │   │   │   │   │   │   │   │   _table.py
│   │   │   │   │   │   │   │   │   _treemap.py
│   │   │   │   │   │   │   │   │   _violin.py
│   │   │   │   │   │   │   │   │   _volume.py
│   │   │   │   │   │   │   │   │   _waterfall.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _bar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _barpolar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _box.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _candlestick.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _carpet.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _choropleth.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _choroplethmap.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _choroplethmapbox.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _cone.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _contour.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _contourcarpet.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _densitymap.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _densitymapbox.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _funnel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _funnelarea.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _heatmap.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _histogram.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _histogram2d.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _histogram2dcontour.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _icicle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _image.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _indicator.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _isosurface.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _mesh3d.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _ohlc.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _parcats.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _parcoords.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _pie.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _sankey.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scatter.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scatter3d.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scattercarpet.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scattergeo.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scattergl.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scattermap.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scattermapbox.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scatterpolar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scatterpolargl.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scattersmith.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _scatterternary.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _splom.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _streamtube.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _sunburst.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _surface.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _table.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _treemap.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _violin.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _volume.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _waterfall.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _data.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _layout.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── ternary/
│   │   │   │   │   │   │   │   _aaxis.py
│   │   │   │   │   │   │   │   _baxis.py
│   │   │   │   │   │   │   │   _caxis.py
│   │   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── aaxis/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── baxis/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── caxis/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _aaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _baxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _caxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _pad.py
│   │   │   │   │   │   │   │   _subtitle.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── subtitle/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pad.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _subtitle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── updatemenu/
│   │   │   │   │   │   │   │   _button.py
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _pad.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _button.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pad.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── xaxis/
│   │   │   │   │   │   │   │   _autorangeoptions.py
│   │   │   │   │   │   │   │   _minor.py
│   │   │   │   │   │   │   │   _rangebreak.py
│   │   │   │   │   │   │   │   _rangeselector.py
│   │   │   │   │   │   │   │   _rangeslider.py
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   _unifiedhovertitle.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── rangeselector/
│   │   │   │   │   │   │   │   │   _button.py
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _button.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── rangeslider/
│   │   │   │   │   │   │   │   │   _yaxis.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _yaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _autorangeoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _minor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _rangebreak.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _rangeselector.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _rangeslider.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _unifiedhovertitle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── yaxis/
│   │   │   │   │   │   │   │   _autorangeoptions.py
│   │   │   │   │   │   │   │   _minor.py
│   │   │   │   │   │   │   │   _rangebreak.py
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   _unifiedhovertitle.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _autorangeoptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _minor.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _rangebreak.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _unifiedhovertitle.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _activeselection.cpython-310.pyc
│   │   │   │   │   │   │   │   _activeshape.cpython-310.pyc
│   │   │   │   │   │   │   │   _annotation.cpython-310.pyc
│   │   │   │   │   │   │   │   _coloraxis.cpython-310.pyc
│   │   │   │   │   │   │   │   _colorscale.cpython-310.pyc
│   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   _geo.cpython-310.pyc
│   │   │   │   │   │   │   │   _grid.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _image.cpython-310.pyc
│   │   │   │   │   │   │   │   _legend.cpython-310.pyc
│   │   │   │   │   │   │   │   _map.cpython-310.pyc
│   │   │   │   │   │   │   │   _mapbox.cpython-310.pyc
│   │   │   │   │   │   │   │   _margin.cpython-310.pyc
│   │   │   │   │   │   │   │   _modebar.cpython-310.pyc
│   │   │   │   │   │   │   │   _newselection.cpython-310.pyc
│   │   │   │   │   │   │   │   _newshape.cpython-310.pyc
│   │   │   │   │   │   │   │   _polar.cpython-310.pyc
│   │   │   │   │   │   │   │   _scene.cpython-310.pyc
│   │   │   │   │   │   │   │   _selection.cpython-310.pyc
│   │   │   │   │   │   │   │   _shape.cpython-310.pyc
│   │   │   │   │   │   │   │   _slider.cpython-310.pyc
│   │   │   │   │   │   │   │   _smith.cpython-310.pyc
│   │   │   │   │   │   │   │   _template.cpython-310.pyc
│   │   │   │   │   │   │   │   _ternary.cpython-310.pyc
│   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   _transition.cpython-310.pyc
│   │   │   │   │   │   │   │   _uniformtext.cpython-310.pyc
│   │   │   │   │   │   │   │   _updatemenu.cpython-310.pyc
│   │   │   │   │   │   │   │   _xaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   _yaxis.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── mesh3d/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _contour.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _lighting.py
│   │   │   │   │   │   │   _lightposition.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _contour.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _lighting.cpython-310.pyc
│   │   │   │   │   │   │   │   _lightposition.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── ohlc/
│   │   │   │   │   │   │   _decreasing.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _increasing.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── decreasing/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── increasing/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _decreasing.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _increasing.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── parcats/
│   │   │   │   │   │   │   _dimension.py
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _labelfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── line/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _dimension.cpython-310.pyc
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _labelfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── parcoords/
│   │   │   │   │   │   │   _dimension.py
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _labelfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _rangefont.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── line/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _dimension.cpython-310.pyc
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _labelfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _rangefont.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── pie/
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── sankey/
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _link.py
│   │   │   │   │   │   │   _node.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── link/
│   │   │   │   │   │   │   │   _colorscale.py
│   │   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorscale.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── node/
│   │   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _link.cpython-310.pyc
│   │   │   │   │   │   │   │   _node.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scatter/
│   │   │   │   │   │   │   _error_x.py
│   │   │   │   │   │   │   _error_y.py
│   │   │   │   │   │   │   _fillgradient.py
│   │   │   │   │   │   │   _fillpattern.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _gradient.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _gradient.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _error_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _error_y.cpython-310.pyc
│   │   │   │   │   │   │   │   _fillgradient.cpython-310.pyc
│   │   │   │   │   │   │   │   _fillpattern.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scatter3d/
│   │   │   │   │   │   │   _error_x.py
│   │   │   │   │   │   │   _error_y.py
│   │   │   │   │   │   │   _error_z.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _projection.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── line/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── projection/
│   │   │   │   │   │   │   │   _x.py
│   │   │   │   │   │   │   │   _y.py
│   │   │   │   │   │   │   │   _z.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _x.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _y.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _z.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _error_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _error_y.cpython-310.pyc
│   │   │   │   │   │   │   │   _error_z.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _projection.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scattercarpet/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _gradient.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _gradient.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scattergeo/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _gradient.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _gradient.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scattergl/
│   │   │   │   │   │   │   _error_x.py
│   │   │   │   │   │   │   _error_y.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _error_x.cpython-310.pyc
│   │   │   │   │   │   │   │   _error_y.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scattermap/
│   │   │   │   │   │   │   _cluster.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _cluster.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scattermapbox/
│   │   │   │   │   │   │   _cluster.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _cluster.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scatterpolar/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _gradient.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _gradient.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scatterpolargl/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scattersmith/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _gradient.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _gradient.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scatterternary/
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _gradient.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _gradient.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── splom/
│   │   │   │   │   │   │   _diagonal.py
│   │   │   │   │   │   │   _dimension.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── dimension/
│   │   │   │   │   │   │   │   _axis.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _axis.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _diagonal.cpython-310.pyc
│   │   │   │   │   │   │   │   _dimension.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── streamtube/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _lighting.py
│   │   │   │   │   │   │   _lightposition.py
│   │   │   │   │   │   │   _starts.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _lighting.cpython-310.pyc
│   │   │   │   │   │   │   │   _lightposition.cpython-310.pyc
│   │   │   │   │   │   │   │   _starts.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── sunburst/
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _leaf.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _root.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _leaf.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _root.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── surface/
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _contours.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _lighting.py
│   │   │   │   │   │   │   _lightposition.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── contours/
│   │   │   │   │   │   │   │   _x.py
│   │   │   │   │   │   │   │   _y.py
│   │   │   │   │   │   │   │   _z.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── x/
│   │   │   │   │   │   │   │   │   _project.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _project.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── y/
│   │   │   │   │   │   │   │   │   _project.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _project.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── z/
│   │   │   │   │   │   │   │   │   _project.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _project.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _x.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _y.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _z.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _contours.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _lighting.cpython-310.pyc
│   │   │   │   │   │   │   │   _lightposition.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── table/
│   │   │   │   │   │   │   _cells.py
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _header.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── cells/
│   │   │   │   │   │   │   │   _fill.py
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _fill.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── header/
│   │   │   │   │   │   │   │   _fill.py
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _fill.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _cells.cpython-310.pyc
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _header.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── treemap/
│   │   │   │   │   │   │   _domain.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _pathbar.py
│   │   │   │   │   │   │   _root.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _tiling.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   _pad.py
│   │   │   │   │   │   │   │   _pattern.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pad.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _pattern.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── pathbar/
│   │   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _domain.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _pathbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _root.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _tiling.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── violin/
│   │   │   │   │   │   │   _box.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   _meanline.py
│   │   │   │   │   │   │   _selected.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _unselected.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── box/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── selected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── unselected/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _box.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   _meanline.cpython-310.pyc
│   │   │   │   │   │   │   │   _selected.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _unselected.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── volume/
│   │   │   │   │   │   │   _caps.py
│   │   │   │   │   │   │   _colorbar.py
│   │   │   │   │   │   │   _contour.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _lighting.py
│   │   │   │   │   │   │   _lightposition.py
│   │   │   │   │   │   │   _slices.py
│   │   │   │   │   │   │   _spaceframe.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _surface.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── caps/
│   │   │   │   │   │   │   │   _x.py
│   │   │   │   │   │   │   │   _y.py
│   │   │   │   │   │   │   │   _z.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _x.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _y.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _z.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── colorbar/
│   │   │   │   │   │   │   │   _tickfont.py
│   │   │   │   │   │   │   │   _tickformatstop.py
│   │   │   │   │   │   │   │   _title.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── title/
│   │   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _tickfont.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _tickformatstop.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _title.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── slices/
│   │   │   │   │   │   │   │   _x.py
│   │   │   │   │   │   │   │   _y.py
│   │   │   │   │   │   │   │   _z.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _x.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _y.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _z.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _caps.cpython-310.pyc
│   │   │   │   │   │   │   │   _colorbar.cpython-310.pyc
│   │   │   │   │   │   │   │   _contour.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _lighting.cpython-310.pyc
│   │   │   │   │   │   │   │   _lightposition.cpython-310.pyc
│   │   │   │   │   │   │   │   _slices.cpython-310.pyc
│   │   │   │   │   │   │   │   _spaceframe.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _surface.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── waterfall/
│   │   │   │   │   │   │   _connector.py
│   │   │   │   │   │   │   _decreasing.py
│   │   │   │   │   │   │   _hoverlabel.py
│   │   │   │   │   │   │   _increasing.py
│   │   │   │   │   │   │   _insidetextfont.py
│   │   │   │   │   │   │   _legendgrouptitle.py
│   │   │   │   │   │   │   _outsidetextfont.py
│   │   │   │   │   │   │   _stream.py
│   │   │   │   │   │   │   _textfont.py
│   │   │   │   │   │   │   _totals.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── connector/
│   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── decreasing/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── hoverlabel/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── increasing/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── legendgrouptitle/
│   │   │   │   │   │   │   │   _font.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _font.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── totals/
│   │   │   │   │   │   │   │   _marker.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── marker/
│   │   │   │   │   │   │   │   │   _line.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   _line.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _marker.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _connector.cpython-310.pyc
│   │   │   │   │   │   │   │   _decreasing.cpython-310.pyc
│   │   │   │   │   │   │   │   _hoverlabel.cpython-310.pyc
│   │   │   │   │   │   │   │   _increasing.cpython-310.pyc
│   │   │   │   │   │   │   │   _insidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _legendgrouptitle.cpython-310.pyc
│   │   │   │   │   │   │   │   _outsidetextfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _stream.cpython-310.pyc
│   │   │   │   │   │   │   │   _textfont.cpython-310.pyc
│   │   │   │   │   │   │   │   _totals.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   graph_objs.cpython-310.pyc
│   │   │   │   │   │   │   _bar.cpython-310.pyc
│   │   │   │   │   │   │   _barpolar.cpython-310.pyc
│   │   │   │   │   │   │   _box.cpython-310.pyc
│   │   │   │   │   │   │   _candlestick.cpython-310.pyc
│   │   │   │   │   │   │   _carpet.cpython-310.pyc
│   │   │   │   │   │   │   _choropleth.cpython-310.pyc
│   │   │   │   │   │   │   _choroplethmap.cpython-310.pyc
│   │   │   │   │   │   │   _choroplethmapbox.cpython-310.pyc
│   │   │   │   │   │   │   _cone.cpython-310.pyc
│   │   │   │   │   │   │   _contour.cpython-310.pyc
│   │   │   │   │   │   │   _contourcarpet.cpython-310.pyc
│   │   │   │   │   │   │   _densitymap.cpython-310.pyc
│   │   │   │   │   │   │   _densitymapbox.cpython-310.pyc
│   │   │   │   │   │   │   _deprecations.cpython-310.pyc
│   │   │   │   │   │   │   _figure.cpython-310.pyc
│   │   │   │   │   │   │   _figurewidget.cpython-310.pyc
│   │   │   │   │   │   │   _frame.cpython-310.pyc
│   │   │   │   │   │   │   _funnel.cpython-310.pyc
│   │   │   │   │   │   │   _funnelarea.cpython-310.pyc
│   │   │   │   │   │   │   _heatmap.cpython-310.pyc
│   │   │   │   │   │   │   _histogram.cpython-310.pyc
│   │   │   │   │   │   │   _histogram2d.cpython-310.pyc
│   │   │   │   │   │   │   _histogram2dcontour.cpython-310.pyc
│   │   │   │   │   │   │   _icicle.cpython-310.pyc
│   │   │   │   │   │   │   _image.cpython-310.pyc
│   │   │   │   │   │   │   _indicator.cpython-310.pyc
│   │   │   │   │   │   │   _isosurface.cpython-310.pyc
│   │   │   │   │   │   │   _layout.cpython-310.pyc
│   │   │   │   │   │   │   _mesh3d.cpython-310.pyc
│   │   │   │   │   │   │   _ohlc.cpython-310.pyc
│   │   │   │   │   │   │   _parcats.cpython-310.pyc
│   │   │   │   │   │   │   _parcoords.cpython-310.pyc
│   │   │   │   │   │   │   _pie.cpython-310.pyc
│   │   │   │   │   │   │   _sankey.cpython-310.pyc
│   │   │   │   │   │   │   _scatter.cpython-310.pyc
│   │   │   │   │   │   │   _scatter3d.cpython-310.pyc
│   │   │   │   │   │   │   _scattercarpet.cpython-310.pyc
│   │   │   │   │   │   │   _scattergeo.cpython-310.pyc
│   │   │   │   │   │   │   _scattergl.cpython-310.pyc
│   │   │   │   │   │   │   _scattermap.cpython-310.pyc
│   │   │   │   │   │   │   _scattermapbox.cpython-310.pyc
│   │   │   │   │   │   │   _scatterpolar.cpython-310.pyc
│   │   │   │   │   │   │   _scatterpolargl.cpython-310.pyc
│   │   │   │   │   │   │   _scattersmith.cpython-310.pyc
│   │   │   │   │   │   │   _scatterternary.cpython-310.pyc
│   │   │   │   │   │   │   _splom.cpython-310.pyc
│   │   │   │   │   │   │   _streamtube.cpython-310.pyc
│   │   │   │   │   │   │   _sunburst.cpython-310.pyc
│   │   │   │   │   │   │   _surface.cpython-310.pyc
│   │   │   │   │   │   │   _table.cpython-310.pyc
│   │   │   │   │   │   │   _treemap.cpython-310.pyc
│   │   │   │   │   │   │   _violin.cpython-310.pyc
│   │   │   │   │   │   │   _volume.cpython-310.pyc
│   │   │   │   │   │   │   _waterfall.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── io/
│   │   │   │   │   │   base_renderers.py
│   │   │   │   │   │   json.py
│   │   │   │   │   │   kaleido.py
│   │   │   │   │   │   orca.py
│   │   │   │   │   │   _base_renderers.py
│   │   │   │   │   │   _defaults.py
│   │   │   │   │   │   _html.py
│   │   │   │   │   │   _json.py
│   │   │   │   │   │   _kaleido.py
│   │   │   │   │   │   _orca.py
│   │   │   │   │   │   _renderers.py
│   │   │   │   │   │   _sg_scraper.py
│   │   │   │   │   │   _templates.py
│   │   │   │   │   │   _utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base_renderers.cpython-310.pyc
│   │   │   │   │   │   │   json.cpython-310.pyc
│   │   │   │   │   │   │   kaleido.cpython-310.pyc
│   │   │   │   │   │   │   orca.cpython-310.pyc
│   │   │   │   │   │   │   _base_renderers.cpython-310.pyc
│   │   │   │   │   │   │   _defaults.cpython-310.pyc
│   │   │   │   │   │   │   _html.cpython-310.pyc
│   │   │   │   │   │   │   _json.cpython-310.pyc
│   │   │   │   │   │   │   _kaleido.cpython-310.pyc
│   │   │   │   │   │   │   _orca.cpython-310.pyc
│   │   │   │   │   │   │   _renderers.cpython-310.pyc
│   │   │   │   │   │   │   _sg_scraper.cpython-310.pyc
│   │   │   │   │   │   │   _templates.cpython-310.pyc
│   │   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── labextension/
│   │   │   │   │   │   package.json
│   │   │   │   │   │   ├── static/
│   │   │   │   │   │   │   340.310a22805a4f2bd627f2.js
│   │   │   │   │   │   │   remoteEntry.cf61b7703ecd84191a10.js
│   │   │   │   │   │   │   style.js
│   │   │   │   │   ├── matplotlylib/
│   │   │   │   │   │   mpltools.py
│   │   │   │   │   │   renderer.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── mplexporter/
│   │   │   │   │   │   │   exporter.py
│   │   │   │   │   │   │   tools.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── renderers/
│   │   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   │   fake_renderer.py
│   │   │   │   │   │   │   │   vega_renderer.py
│   │   │   │   │   │   │   │   vincent_renderer.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   │   fake_renderer.cpython-310.pyc
│   │   │   │   │   │   │   │   │   vega_renderer.cpython-310.pyc
│   │   │   │   │   │   │   │   │   vincent_renderer.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   │   │   test_utils.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   exporter.cpython-310.pyc
│   │   │   │   │   │   │   │   tools.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_renderer.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_renderer.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   mpltools.cpython-310.pyc
│   │   │   │   │   │   │   renderer.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── offline/
│   │   │   │   │   │   offline.py
│   │   │   │   │   │   _plotlyjs_version.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   offline.cpython-310.pyc
│   │   │   │   │   │   │   _plotlyjs_version.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── package_data/
│   │   │   │   │   │   plotly.min.js
│   │   │   │   │   │   widgetbundle.js
│   │   │   │   │   │   ├── datasets/
│   │   │   │   │   │   │   carshare.csv.gz
│   │   │   │   │   │   │   election.csv.gz
│   │   │   │   │   │   │   election.geojson.gz
│   │   │   │   │   │   │   experiment.csv.gz
│   │   │   │   │   │   │   gapminder.csv.gz
│   │   │   │   │   │   │   iris.csv.gz
│   │   │   │   │   │   │   medals.csv.gz
│   │   │   │   │   │   │   stocks.csv.gz
│   │   │   │   │   │   │   tips.csv.gz
│   │   │   │   │   │   │   wind.csv.gz
│   │   │   │   │   │   ├── templates/
│   │   │   │   │   │   │   ggplot2.json
│   │   │   │   │   │   │   gridon.json
│   │   │   │   │   │   │   plotly.json
│   │   │   │   │   │   │   plotly_dark.json
│   │   │   │   │   │   │   plotly_white.json
│   │   │   │   │   │   │   presentation.json
│   │   │   │   │   │   │   seaborn.json
│   │   │   │   │   │   │   simple_white.json
│   │   │   │   │   │   │   xgridoff.json
│   │   │   │   │   │   │   ygridoff.json
│   │   │   │   │   ├── validators/
│   │   │   │   │   │   _validators.json
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   animation.cpython-310.pyc
│   │   │   │   │   │   basedatatypes.cpython-310.pyc
│   │   │   │   │   │   basewidget.cpython-310.pyc
│   │   │   │   │   │   callbacks.cpython-310.pyc
│   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   files.cpython-310.pyc
│   │   │   │   │   │   missing_anywidget.cpython-310.pyc
│   │   │   │   │   │   optional_imports.cpython-310.pyc
│   │   │   │   │   │   serializers.cpython-310.pyc
│   │   │   │   │   │   shapeannotation.cpython-310.pyc
│   │   │   │   │   │   subplots.cpython-310.pyc
│   │   │   │   │   │   tools.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   validator_cache.cpython-310.pyc
│   │   │   │   │   │   _subplots.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── plotly-6.4.0.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.txt
│   │   │   │   ├── protobuf-6.33.1.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   ├── pyarrow/
│   │   │   │   │   acero.py
│   │   │   │   │   array.pxi
│   │   │   │   │   arrow.dll
│   │   │   │   │   arrow.lib
│   │   │   │   │   arrow_acero.dll
│   │   │   │   │   arrow_acero.lib
│   │   │   │   │   arrow_compute.dll
│   │   │   │   │   arrow_compute.lib
│   │   │   │   │   arrow_dataset.dll
│   │   │   │   │   arrow_dataset.lib
│   │   │   │   │   arrow_flight.dll
│   │   │   │   │   arrow_flight.lib
│   │   │   │   │   arrow_python.dll
│   │   │   │   │   arrow_python.lib
│   │   │   │   │   arrow_python_flight.dll
│   │   │   │   │   arrow_python_flight.lib
│   │   │   │   │   arrow_python_parquet_encryption.dll
│   │   │   │   │   arrow_python_parquet_encryption.lib
│   │   │   │   │   arrow_substrait.dll
│   │   │   │   │   arrow_substrait.lib
│   │   │   │   │   benchmark.pxi
│   │   │   │   │   benchmark.py
│   │   │   │   │   builder.pxi
│   │   │   │   │   cffi.py
│   │   │   │   │   compat.pxi
│   │   │   │   │   compute.py
│   │   │   │   │   config.pxi
│   │   │   │   │   conftest.py
│   │   │   │   │   csv.py
│   │   │   │   │   cuda.py
│   │   │   │   │   dataset.py
│   │   │   │   │   device.pxi
│   │   │   │   │   error.pxi
│   │   │   │   │   feather.py
│   │   │   │   │   flight.py
│   │   │   │   │   fs.py
│   │   │   │   │   gandiva.pyx
│   │   │   │   │   io.pxi
│   │   │   │   │   ipc.pxi
│   │   │   │   │   ipc.py
│   │   │   │   │   json.py
│   │   │   │   │   jvm.py
│   │   │   │   │   lib.cp310-win_amd64.pyd
│   │   │   │   │   lib.h
│   │   │   │   │   lib.pxd
│   │   │   │   │   lib.pyx
│   │   │   │   │   lib_api.h
│   │   │   │   │   memory.pxi
│   │   │   │   │   orc.py
│   │   │   │   │   pandas-shim.pxi
│   │   │   │   │   pandas_compat.py
│   │   │   │   │   parquet.dll
│   │   │   │   │   parquet.lib
│   │   │   │   │   public-api.pxi
│   │   │   │   │   scalar.pxi
│   │   │   │   │   substrait.py
│   │   │   │   │   table.pxi
│   │   │   │   │   tensor.pxi
│   │   │   │   │   types.pxi
│   │   │   │   │   types.py
│   │   │   │   │   util.py
│   │   │   │   │   _acero.cp310-win_amd64.pyd
│   │   │   │   │   _acero.pxd
│   │   │   │   │   _acero.pyx
│   │   │   │   │   _azurefs.pyx
│   │   │   │   │   _compute.cp310-win_amd64.pyd
│   │   │   │   │   _compute.pxd
│   │   │   │   │   _compute.pyx
│   │   │   │   │   _compute_docstrings.py
│   │   │   │   │   _csv.cp310-win_amd64.pyd
│   │   │   │   │   _csv.pxd
│   │   │   │   │   _csv.pyx
│   │   │   │   │   _cuda.pxd
│   │   │   │   │   _cuda.pyx
│   │   │   │   │   _dataset.cp310-win_amd64.pyd
│   │   │   │   │   _dataset.pxd
│   │   │   │   │   _dataset.pyx
│   │   │   │   │   _dataset_orc.cp310-win_amd64.pyd
│   │   │   │   │   _dataset_orc.pyx
│   │   │   │   │   _dataset_parquet.cp310-win_amd64.pyd
│   │   │   │   │   _dataset_parquet.pxd
│   │   │   │   │   _dataset_parquet.pyx
│   │   │   │   │   _dataset_parquet_encryption.cp310-win_amd64.pyd
│   │   │   │   │   _dataset_parquet_encryption.pyx
│   │   │   │   │   _dlpack.pxi
│   │   │   │   │   _feather.cp310-win_amd64.pyd
│   │   │   │   │   _feather.pyx
│   │   │   │   │   _flight.cp310-win_amd64.pyd
│   │   │   │   │   _flight.pyx
│   │   │   │   │   _fs.cp310-win_amd64.pyd
│   │   │   │   │   _fs.pxd
│   │   │   │   │   _fs.pyx
│   │   │   │   │   _gcsfs.cp310-win_amd64.pyd
│   │   │   │   │   _gcsfs.pyx
│   │   │   │   │   _generated_version.py
│   │   │   │   │   _hdfs.cp310-win_amd64.pyd
│   │   │   │   │   _hdfs.pyx
│   │   │   │   │   _json.cp310-win_amd64.pyd
│   │   │   │   │   _json.pxd
│   │   │   │   │   _json.pyx
│   │   │   │   │   _orc.cp310-win_amd64.pyd
│   │   │   │   │   _orc.pxd
│   │   │   │   │   _orc.pyx
│   │   │   │   │   _parquet.cp310-win_amd64.pyd
│   │   │   │   │   _parquet.pxd
│   │   │   │   │   _parquet.pyx
│   │   │   │   │   _parquet_encryption.cp310-win_amd64.pyd
│   │   │   │   │   _parquet_encryption.pxd
│   │   │   │   │   _parquet_encryption.pyx
│   │   │   │   │   _pyarrow_cpp_tests.cp310-win_amd64.pyd
│   │   │   │   │   _pyarrow_cpp_tests.pxd
│   │   │   │   │   _pyarrow_cpp_tests.pyx
│   │   │   │   │   _s3fs.cp310-win_amd64.pyd
│   │   │   │   │   _s3fs.pyx
│   │   │   │   │   _substrait.cp310-win_amd64.pyd
│   │   │   │   │   _substrait.pyx
│   │   │   │   │   __init__.pxd
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── include/
│   │   │   │   │   │   ├── arrow/
│   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   array.h
│   │   │   │   │   │   │   buffer.h
│   │   │   │   │   │   │   buffer_builder.h
│   │   │   │   │   │   │   builder.h
│   │   │   │   │   │   │   chunked_array.h
│   │   │   │   │   │   │   chunk_resolver.h
│   │   │   │   │   │   │   compare.h
│   │   │   │   │   │   │   config.h
│   │   │   │   │   │   │   datum.h
│   │   │   │   │   │   │   device.h
│   │   │   │   │   │   │   device_allocation_type_set.h
│   │   │   │   │   │   │   extension_type.h
│   │   │   │   │   │   │   memory_pool.h
│   │   │   │   │   │   │   memory_pool_test.h
│   │   │   │   │   │   │   pretty_print.h
│   │   │   │   │   │   │   record_batch.h
│   │   │   │   │   │   │   result.h
│   │   │   │   │   │   │   scalar.h
│   │   │   │   │   │   │   sparse_tensor.h
│   │   │   │   │   │   │   status.h
│   │   │   │   │   │   │   stl.h
│   │   │   │   │   │   │   stl_allocator.h
│   │   │   │   │   │   │   stl_iterator.h
│   │   │   │   │   │   │   table.h
│   │   │   │   │   │   │   table_builder.h
│   │   │   │   │   │   │   tensor.h
│   │   │   │   │   │   │   type.h
│   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   type_traits.h
│   │   │   │   │   │   │   visitor.h
│   │   │   │   │   │   │   visitor_generate.h
│   │   │   │   │   │   │   visit_array_inline.h
│   │   │   │   │   │   │   visit_data_inline.h
│   │   │   │   │   │   │   visit_scalar_inline.h
│   │   │   │   │   │   │   visit_type_inline.h
│   │   │   │   │   │   │   ├── acero/
│   │   │   │   │   │   │   │   accumulation_queue.h
│   │   │   │   │   │   │   │   aggregate_node.h
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   asof_join_node.h
│   │   │   │   │   │   │   │   backpressure_handler.h
│   │   │   │   │   │   │   │   benchmark_util.h
│   │   │   │   │   │   │   │   bloom_filter.h
│   │   │   │   │   │   │   │   exec_plan.h
│   │   │   │   │   │   │   │   hash_join.h
│   │   │   │   │   │   │   │   hash_join_dict.h
│   │   │   │   │   │   │   │   hash_join_node.h
│   │   │   │   │   │   │   │   map_node.h
│   │   │   │   │   │   │   │   options.h
│   │   │   │   │   │   │   │   order_by_impl.h
│   │   │   │   │   │   │   │   partition_util.h
│   │   │   │   │   │   │   │   query_context.h
│   │   │   │   │   │   │   │   schema_util.h
│   │   │   │   │   │   │   │   task_util.h
│   │   │   │   │   │   │   │   test_nodes.h
│   │   │   │   │   │   │   │   time_series_util.h
│   │   │   │   │   │   │   │   tpch_node.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   ├── adapters/
│   │   │   │   │   │   │   │   ├── orc/
│   │   │   │   │   │   │   │   │   adapter.h
│   │   │   │   │   │   │   │   │   options.h
│   │   │   │   │   │   │   │   ├── tensorflow/
│   │   │   │   │   │   │   │   │   convert.h
│   │   │   │   │   │   │   ├── array/
│   │   │   │   │   │   │   │   array_base.h
│   │   │   │   │   │   │   │   array_binary.h
│   │   │   │   │   │   │   │   array_decimal.h
│   │   │   │   │   │   │   │   array_dict.h
│   │   │   │   │   │   │   │   array_nested.h
│   │   │   │   │   │   │   │   array_primitive.h
│   │   │   │   │   │   │   │   array_run_end.h
│   │   │   │   │   │   │   │   builder_adaptive.h
│   │   │   │   │   │   │   │   builder_base.h
│   │   │   │   │   │   │   │   builder_binary.h
│   │   │   │   │   │   │   │   builder_decimal.h
│   │   │   │   │   │   │   │   builder_dict.h
│   │   │   │   │   │   │   │   builder_nested.h
│   │   │   │   │   │   │   │   builder_primitive.h
│   │   │   │   │   │   │   │   builder_run_end.h
│   │   │   │   │   │   │   │   builder_time.h
│   │   │   │   │   │   │   │   builder_union.h
│   │   │   │   │   │   │   │   concatenate.h
│   │   │   │   │   │   │   │   data.h
│   │   │   │   │   │   │   │   diff.h
│   │   │   │   │   │   │   │   statistics.h
│   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   validate.h
│   │   │   │   │   │   │   ├── c/
│   │   │   │   │   │   │   │   abi.h
│   │   │   │   │   │   │   │   bridge.h
│   │   │   │   │   │   │   │   dlpack.h
│   │   │   │   │   │   │   │   dlpack_abi.h
│   │   │   │   │   │   │   │   helpers.h
│   │   │   │   │   │   │   ├── compute/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   api_aggregate.h
│   │   │   │   │   │   │   │   api_scalar.h
│   │   │   │   │   │   │   │   api_vector.h
│   │   │   │   │   │   │   │   cast.h
│   │   │   │   │   │   │   │   exec.h
│   │   │   │   │   │   │   │   expression.h
│   │   │   │   │   │   │   │   function.h
│   │   │   │   │   │   │   │   function_options.h
│   │   │   │   │   │   │   │   initialize.h
│   │   │   │   │   │   │   │   kernel.h
│   │   │   │   │   │   │   │   ordering.h
│   │   │   │   │   │   │   │   registry.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   │   ├── row/
│   │   │   │   │   │   │   │   │   grouper.h
│   │   │   │   │   │   │   ├── csv/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   chunker.h
│   │   │   │   │   │   │   │   column_builder.h
│   │   │   │   │   │   │   │   column_decoder.h
│   │   │   │   │   │   │   │   converter.h
│   │   │   │   │   │   │   │   invalid_row.h
│   │   │   │   │   │   │   │   options.h
│   │   │   │   │   │   │   │   parser.h
│   │   │   │   │   │   │   │   reader.h
│   │   │   │   │   │   │   │   test_common.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   writer.h
│   │   │   │   │   │   │   ├── dataset/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   dataset.h
│   │   │   │   │   │   │   │   dataset_writer.h
│   │   │   │   │   │   │   │   discovery.h
│   │   │   │   │   │   │   │   file_base.h
│   │   │   │   │   │   │   │   file_csv.h
│   │   │   │   │   │   │   │   file_ipc.h
│   │   │   │   │   │   │   │   file_json.h
│   │   │   │   │   │   │   │   file_orc.h
│   │   │   │   │   │   │   │   file_parquet.h
│   │   │   │   │   │   │   │   parquet_encryption_config.h
│   │   │   │   │   │   │   │   partition.h
│   │   │   │   │   │   │   │   plan.h
│   │   │   │   │   │   │   │   projector.h
│   │   │   │   │   │   │   │   scanner.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   ├── engine/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   ├── substrait/
│   │   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   │   extension_set.h
│   │   │   │   │   │   │   │   │   extension_types.h
│   │   │   │   │   │   │   │   │   options.h
│   │   │   │   │   │   │   │   │   relation.h
│   │   │   │   │   │   │   │   │   serde.h
│   │   │   │   │   │   │   │   │   test_plan_builder.h
│   │   │   │   │   │   │   │   │   test_util.h
│   │   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   ├── extension/
│   │   │   │   │   │   │   │   bool8.h
│   │   │   │   │   │   │   │   fixed_shape_tensor.h
│   │   │   │   │   │   │   │   json.h
│   │   │   │   │   │   │   │   opaque.h
│   │   │   │   │   │   │   │   uuid.h
│   │   │   │   │   │   │   ├── filesystem/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   azurefs.h
│   │   │   │   │   │   │   │   filesystem.h
│   │   │   │   │   │   │   │   filesystem_library.h
│   │   │   │   │   │   │   │   gcsfs.h
│   │   │   │   │   │   │   │   hdfs.h
│   │   │   │   │   │   │   │   localfs.h
│   │   │   │   │   │   │   │   mockfs.h
│   │   │   │   │   │   │   │   path_util.h
│   │   │   │   │   │   │   │   s3fs.h
│   │   │   │   │   │   │   │   s3_test_util.h
│   │   │   │   │   │   │   │   test_util.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   ├── flight/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   client.h
│   │   │   │   │   │   │   │   client_auth.h
│   │   │   │   │   │   │   │   client_cookie_middleware.h
│   │   │   │   │   │   │   │   client_middleware.h
│   │   │   │   │   │   │   │   client_tracing_middleware.h
│   │   │   │   │   │   │   │   middleware.h
│   │   │   │   │   │   │   │   otel_logging.h
│   │   │   │   │   │   │   │   platform.h
│   │   │   │   │   │   │   │   server.h
│   │   │   │   │   │   │   │   server_auth.h
│   │   │   │   │   │   │   │   server_middleware.h
│   │   │   │   │   │   │   │   server_tracing_middleware.h
│   │   │   │   │   │   │   │   test_auth_handlers.h
│   │   │   │   │   │   │   │   test_definitions.h
│   │   │   │   │   │   │   │   test_flight_server.h
│   │   │   │   │   │   │   │   test_util.h
│   │   │   │   │   │   │   │   transport.h
│   │   │   │   │   │   │   │   transport_server.h
│   │   │   │   │   │   │   │   types.h
│   │   │   │   │   │   │   │   types_async.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   ├── io/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   buffered.h
│   │   │   │   │   │   │   │   caching.h
│   │   │   │   │   │   │   │   compressed.h
│   │   │   │   │   │   │   │   concurrency.h
│   │   │   │   │   │   │   │   file.h
│   │   │   │   │   │   │   │   hdfs.h
│   │   │   │   │   │   │   │   interfaces.h
│   │   │   │   │   │   │   │   memory.h
│   │   │   │   │   │   │   │   mman.h
│   │   │   │   │   │   │   │   slow.h
│   │   │   │   │   │   │   │   stdio.h
│   │   │   │   │   │   │   │   test_common.h
│   │   │   │   │   │   │   │   transform.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   ├── ipc/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   dictionary.h
│   │   │   │   │   │   │   │   feather.h
│   │   │   │   │   │   │   │   message.h
│   │   │   │   │   │   │   │   options.h
│   │   │   │   │   │   │   │   reader.h
│   │   │   │   │   │   │   │   test_common.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   writer.h
│   │   │   │   │   │   │   ├── json/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   chunked_builder.h
│   │   │   │   │   │   │   │   chunker.h
│   │   │   │   │   │   │   │   converter.h
│   │   │   │   │   │   │   │   from_string.h
│   │   │   │   │   │   │   │   object_parser.h
│   │   │   │   │   │   │   │   object_writer.h
│   │   │   │   │   │   │   │   options.h
│   │   │   │   │   │   │   │   parser.h
│   │   │   │   │   │   │   │   rapidjson_defs.h
│   │   │   │   │   │   │   │   reader.h
│   │   │   │   │   │   │   │   test_common.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   ├── python/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   arrow_to_pandas.h
│   │   │   │   │   │   │   │   async.h
│   │   │   │   │   │   │   │   benchmark.h
│   │   │   │   │   │   │   │   common.h
│   │   │   │   │   │   │   │   csv.h
│   │   │   │   │   │   │   │   datetime.h
│   │   │   │   │   │   │   │   decimal.h
│   │   │   │   │   │   │   │   extension_type.h
│   │   │   │   │   │   │   │   filesystem.h
│   │   │   │   │   │   │   │   flight.h
│   │   │   │   │   │   │   │   gdb.h
│   │   │   │   │   │   │   │   helpers.h
│   │   │   │   │   │   │   │   inference.h
│   │   │   │   │   │   │   │   io.h
│   │   │   │   │   │   │   │   ipc.h
│   │   │   │   │   │   │   │   iterators.h
│   │   │   │   │   │   │   │   lib.h
│   │   │   │   │   │   │   │   lib_api.h
│   │   │   │   │   │   │   │   numpy_convert.h
│   │   │   │   │   │   │   │   numpy_init.h
│   │   │   │   │   │   │   │   numpy_interop.h
│   │   │   │   │   │   │   │   numpy_to_arrow.h
│   │   │   │   │   │   │   │   parquet_encryption.h
│   │   │   │   │   │   │   │   platform.h
│   │   │   │   │   │   │   │   pyarrow.h
│   │   │   │   │   │   │   │   pyarrow_api.h
│   │   │   │   │   │   │   │   pyarrow_lib.h
│   │   │   │   │   │   │   │   python_test.h
│   │   │   │   │   │   │   │   python_to_arrow.h
│   │   │   │   │   │   │   │   type_traits.h
│   │   │   │   │   │   │   │   udf.h
│   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   │   ├── vendored/
│   │   │   │   │   │   │   │   │   pythoncapi_compat.h
│   │   │   │   │   │   │   ├── tensor/
│   │   │   │   │   │   │   │   converter.h
│   │   │   │   │   │   │   ├── testing/
│   │   │   │   │   │   │   │   async_test_util.h
│   │   │   │   │   │   │   │   builder.h
│   │   │   │   │   │   │   │   executor_util.h
│   │   │   │   │   │   │   │   extension_type.h
│   │   │   │   │   │   │   │   fixed_width_test_util.h
│   │   │   │   │   │   │   │   future_util.h
│   │   │   │   │   │   │   │   generator.h
│   │   │   │   │   │   │   │   gtest_compat.h
│   │   │   │   │   │   │   │   gtest_util.h
│   │   │   │   │   │   │   │   matchers.h
│   │   │   │   │   │   │   │   math.h
│   │   │   │   │   │   │   │   process.h
│   │   │   │   │   │   │   │   random.h
│   │   │   │   │   │   │   │   uniform_real.h
│   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   ├── util/
│   │   │   │   │   │   │   │   algorithm.h
│   │   │   │   │   │   │   │   aligned_storage.h
│   │   │   │   │   │   │   │   align_util.h
│   │   │   │   │   │   │   │   async_generator.h
│   │   │   │   │   │   │   │   async_generator_fwd.h
│   │   │   │   │   │   │   │   async_util.h
│   │   │   │   │   │   │   │   base64.h
│   │   │   │   │   │   │   │   basic_decimal.h
│   │   │   │   │   │   │   │   benchmark_util.h
│   │   │   │   │   │   │   │   binary_view_util.h
│   │   │   │   │   │   │   │   bitmap.h
│   │   │   │   │   │   │   │   bitmap_builders.h
│   │   │   │   │   │   │   │   bitmap_generate.h
│   │   │   │   │   │   │   │   bitmap_ops.h
│   │   │   │   │   │   │   │   bitmap_reader.h
│   │   │   │   │   │   │   │   bitmap_visit.h
│   │   │   │   │   │   │   │   bitmap_writer.h
│   │   │   │   │   │   │   │   bit_block_counter.h
│   │   │   │   │   │   │   │   bit_run_reader.h
│   │   │   │   │   │   │   │   bit_util.h
│   │   │   │   │   │   │   │   byte_size.h
│   │   │   │   │   │   │   │   cancel.h
│   │   │   │   │   │   │   │   checked_cast.h
│   │   │   │   │   │   │   │   compare.h
│   │   │   │   │   │   │   │   compression.h
│   │   │   │   │   │   │   │   concurrent_map.h
│   │   │   │   │   │   │   │   config.h
│   │   │   │   │   │   │   │   converter.h
│   │   │   │   │   │   │   │   cpu_info.h
│   │   │   │   │   │   │   │   crc32.h
│   │   │   │   │   │   │   │   debug.h
│   │   │   │   │   │   │   │   decimal.h
│   │   │   │   │   │   │   │   delimiting.h
│   │   │   │   │   │   │   │   endian.h
│   │   │   │   │   │   │   │   float16.h
│   │   │   │   │   │   │   │   formatting.h
│   │   │   │   │   │   │   │   functional.h
│   │   │   │   │   │   │   │   future.h
│   │   │   │   │   │   │   │   hashing.h
│   │   │   │   │   │   │   │   hash_util.h
│   │   │   │   │   │   │   │   int_util.h
│   │   │   │   │   │   │   │   int_util_overflow.h
│   │   │   │   │   │   │   │   io_util.h
│   │   │   │   │   │   │   │   iterator.h
│   │   │   │   │   │   │   │   key_value_metadata.h
│   │   │   │   │   │   │   │   launder.h
│   │   │   │   │   │   │   │   list_util.h
│   │   │   │   │   │   │   │   logger.h
│   │   │   │   │   │   │   │   logging.h
│   │   │   │   │   │   │   │   macros.h
│   │   │   │   │   │   │   │   math_constants.h
│   │   │   │   │   │   │   │   mutex.h
│   │   │   │   │   │   │   │   parallel.h
│   │   │   │   │   │   │   │   pcg_random.h
│   │   │   │   │   │   │   │   prefetch.h
│   │   │   │   │   │   │   │   queue.h
│   │   │   │   │   │   │   │   range.h
│   │   │   │   │   │   │   │   ree_util.h
│   │   │   │   │   │   │   │   regex.h
│   │   │   │   │   │   │   │   rows_to_batches.h
│   │   │   │   │   │   │   │   secure_string.h
│   │   │   │   │   │   │   │   simd.h
│   │   │   │   │   │   │   │   small_vector.h
│   │   │   │   │   │   │   │   span.h
│   │   │   │   │   │   │   │   string.h
│   │   │   │   │   │   │   │   string_util.h
│   │   │   │   │   │   │   │   task_group.h
│   │   │   │   │   │   │   │   test_common.h
│   │   │   │   │   │   │   │   thread_pool.h
│   │   │   │   │   │   │   │   time.h
│   │   │   │   │   │   │   │   tracing.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   │   type_traits.h
│   │   │   │   │   │   │   │   ubsan.h
│   │   │   │   │   │   │   │   union_util.h
│   │   │   │   │   │   │   │   unreachable.h
│   │   │   │   │   │   │   │   uri.h
│   │   │   │   │   │   │   │   utf8.h
│   │   │   │   │   │   │   │   value_parsing.h
│   │   │   │   │   │   │   │   vector.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   │   windows_compatibility.h
│   │   │   │   │   │   │   │   windows_fixup.h
│   │   │   │   │   │   │   ├── vendored/
│   │   │   │   │   │   │   │   datetime.h
│   │   │   │   │   │   │   │   ProducerConsumerQueue.h
│   │   │   │   │   │   │   │   strptime.h
│   │   │   │   │   │   │   │   xxhash.h
│   │   │   │   │   │   │   │   ├── datetime/
│   │   │   │   │   │   │   │   │   date.h
│   │   │   │   │   │   │   │   │   ios.h
│   │   │   │   │   │   │   │   │   tz.h
│   │   │   │   │   │   │   │   │   tz_private.h
│   │   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   │   ├── double-conversion/
│   │   │   │   │   │   │   │   │   bignum-dtoa.h
│   │   │   │   │   │   │   │   │   bignum.h
│   │   │   │   │   │   │   │   │   cached-powers.h
│   │   │   │   │   │   │   │   │   diy-fp.h
│   │   │   │   │   │   │   │   │   double-conversion.h
│   │   │   │   │   │   │   │   │   double-to-string.h
│   │   │   │   │   │   │   │   │   fast-dtoa.h
│   │   │   │   │   │   │   │   │   fixed-dtoa.h
│   │   │   │   │   │   │   │   │   ieee.h
│   │   │   │   │   │   │   │   │   string-to-double.h
│   │   │   │   │   │   │   │   │   strtod.h
│   │   │   │   │   │   │   │   │   utils.h
│   │   │   │   │   │   │   │   ├── pcg/
│   │   │   │   │   │   │   │   │   pcg_extras.hpp
│   │   │   │   │   │   │   │   │   pcg_random.hpp
│   │   │   │   │   │   │   │   │   pcg_uint128.hpp
│   │   │   │   │   │   │   │   ├── portable-snippets/
│   │   │   │   │   │   │   │   │   debug-trap.h
│   │   │   │   │   │   │   │   │   safe-math.h
│   │   │   │   │   │   │   │   ├── xxhash/
│   │   │   │   │   │   │   │   │   xxhash.h
│   │   │   │   │   │   ├── parquet/
│   │   │   │   │   │   │   benchmark_util.h
│   │   │   │   │   │   │   bloom_filter.h
│   │   │   │   │   │   │   bloom_filter_reader.h
│   │   │   │   │   │   │   column_page.h
│   │   │   │   │   │   │   column_reader.h
│   │   │   │   │   │   │   column_scanner.h
│   │   │   │   │   │   │   column_writer.h
│   │   │   │   │   │   │   encoding.h
│   │   │   │   │   │   │   exception.h
│   │   │   │   │   │   │   file_reader.h
│   │   │   │   │   │   │   file_writer.h
│   │   │   │   │   │   │   hasher.h
│   │   │   │   │   │   │   level_comparison.h
│   │   │   │   │   │   │   level_comparison_inc.h
│   │   │   │   │   │   │   level_conversion.h
│   │   │   │   │   │   │   level_conversion_inc.h
│   │   │   │   │   │   │   metadata.h
│   │   │   │   │   │   │   page_index.h
│   │   │   │   │   │   │   parquet_version.h
│   │   │   │   │   │   │   platform.h
│   │   │   │   │   │   │   printer.h
│   │   │   │   │   │   │   properties.h
│   │   │   │   │   │   │   schema.h
│   │   │   │   │   │   │   size_statistics.h
│   │   │   │   │   │   │   statistics.h
│   │   │   │   │   │   │   stream_reader.h
│   │   │   │   │   │   │   stream_writer.h
│   │   │   │   │   │   │   test_util.h
│   │   │   │   │   │   │   types.h
│   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   windows_compatibility.h
│   │   │   │   │   │   │   windows_fixup.h
│   │   │   │   │   │   │   xxhasher.h
│   │   │   │   │   │   │   ├── api/
│   │   │   │   │   │   │   │   io.h
│   │   │   │   │   │   │   │   reader.h
│   │   │   │   │   │   │   │   schema.h
│   │   │   │   │   │   │   │   writer.h
│   │   │   │   │   │   │   ├── arrow/
│   │   │   │   │   │   │   │   reader.h
│   │   │   │   │   │   │   │   schema.h
│   │   │   │   │   │   │   │   test_util.h
│   │   │   │   │   │   │   │   writer.h
│   │   │   │   │   │   │   ├── encryption/
│   │   │   │   │   │   │   │   crypto_factory.h
│   │   │   │   │   │   │   │   encryption.h
│   │   │   │   │   │   │   │   file_key_material_store.h
│   │   │   │   │   │   │   │   file_key_unwrapper.h
│   │   │   │   │   │   │   │   file_key_wrapper.h
│   │   │   │   │   │   │   │   file_system_key_material_store.h
│   │   │   │   │   │   │   │   key_encryption_key.h
│   │   │   │   │   │   │   │   key_material.h
│   │   │   │   │   │   │   │   key_metadata.h
│   │   │   │   │   │   │   │   key_toolkit.h
│   │   │   │   │   │   │   │   kms_client.h
│   │   │   │   │   │   │   │   kms_client_factory.h
│   │   │   │   │   │   │   │   local_wrap_kms_client.h
│   │   │   │   │   │   │   │   test_encryption_util.h
│   │   │   │   │   │   │   │   test_in_memory_kms.h
│   │   │   │   │   │   │   │   two_level_cache_with_expiration.h
│   │   │   │   │   │   │   │   type_fwd.h
│   │   │   │   │   │   │   ├── geospatial/
│   │   │   │   │   │   │   │   statistics.h
│   │   │   │   │   ├── includes/
│   │   │   │   │   │   common.pxd
│   │   │   │   │   │   libarrow.pxd
│   │   │   │   │   │   libarrow_acero.pxd
│   │   │   │   │   │   libarrow_cuda.pxd
│   │   │   │   │   │   libarrow_dataset.pxd
│   │   │   │   │   │   libarrow_dataset_parquet.pxd
│   │   │   │   │   │   libarrow_feather.pxd
│   │   │   │   │   │   libarrow_flight.pxd
│   │   │   │   │   │   libarrow_fs.pxd
│   │   │   │   │   │   libarrow_python.pxd
│   │   │   │   │   │   libarrow_substrait.pxd
│   │   │   │   │   │   libgandiva.pxd
│   │   │   │   │   │   libparquet.pxd
│   │   │   │   │   │   libparquet_encryption.pxd
│   │   │   │   │   │   __init__.pxd
│   │   │   │   │   ├── interchange/
│   │   │   │   │   │   buffer.py
│   │   │   │   │   │   column.py
│   │   │   │   │   │   dataframe.py
│   │   │   │   │   │   from_dataframe.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   buffer.cpython-310.pyc
│   │   │   │   │   │   │   column.cpython-310.pyc
│   │   │   │   │   │   │   dataframe.cpython-310.pyc
│   │   │   │   │   │   │   from_dataframe.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── parquet/
│   │   │   │   │   │   core.py
│   │   │   │   │   │   encryption.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   encryption.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── src/
│   │   │   │   │   │   ├── arrow/
│   │   │   │   │   │   │   ├── python/
│   │   │   │   │   │   │   │   api.h
│   │   │   │   │   │   │   │   arrow_to_pandas.cc
│   │   │   │   │   │   │   │   arrow_to_pandas.h
│   │   │   │   │   │   │   │   arrow_to_python_internal.h
│   │   │   │   │   │   │   │   async.h
│   │   │   │   │   │   │   │   benchmark.cc
│   │   │   │   │   │   │   │   benchmark.h
│   │   │   │   │   │   │   │   CMakeLists.txt
│   │   │   │   │   │   │   │   common.cc
│   │   │   │   │   │   │   │   common.h
│   │   │   │   │   │   │   │   csv.cc
│   │   │   │   │   │   │   │   csv.h
│   │   │   │   │   │   │   │   datetime.cc
│   │   │   │   │   │   │   │   datetime.h
│   │   │   │   │   │   │   │   decimal.cc
│   │   │   │   │   │   │   │   decimal.h
│   │   │   │   │   │   │   │   extension_type.cc
│   │   │   │   │   │   │   │   extension_type.h
│   │   │   │   │   │   │   │   filesystem.cc
│   │   │   │   │   │   │   │   filesystem.h
│   │   │   │   │   │   │   │   flight.cc
│   │   │   │   │   │   │   │   flight.h
│   │   │   │   │   │   │   │   gdb.cc
│   │   │   │   │   │   │   │   gdb.h
│   │   │   │   │   │   │   │   helpers.cc
│   │   │   │   │   │   │   │   helpers.h
│   │   │   │   │   │   │   │   inference.cc
│   │   │   │   │   │   │   │   inference.h
│   │   │   │   │   │   │   │   io.cc
│   │   │   │   │   │   │   │   io.h
│   │   │   │   │   │   │   │   ipc.cc
│   │   │   │   │   │   │   │   ipc.h
│   │   │   │   │   │   │   │   iterators.h
│   │   │   │   │   │   │   │   numpy_convert.cc
│   │   │   │   │   │   │   │   numpy_convert.h
│   │   │   │   │   │   │   │   numpy_init.cc
│   │   │   │   │   │   │   │   numpy_init.h
│   │   │   │   │   │   │   │   numpy_internal.h
│   │   │   │   │   │   │   │   numpy_interop.h
│   │   │   │   │   │   │   │   numpy_to_arrow.cc
│   │   │   │   │   │   │   │   numpy_to_arrow.h
│   │   │   │   │   │   │   │   parquet_encryption.cc
│   │   │   │   │   │   │   │   parquet_encryption.h
│   │   │   │   │   │   │   │   platform.h
│   │   │   │   │   │   │   │   pyarrow.cc
│   │   │   │   │   │   │   │   pyarrow.h
│   │   │   │   │   │   │   │   pyarrow_api.h
│   │   │   │   │   │   │   │   pyarrow_lib.h
│   │   │   │   │   │   │   │   python_test.cc
│   │   │   │   │   │   │   │   python_test.h
│   │   │   │   │   │   │   │   python_to_arrow.cc
│   │   │   │   │   │   │   │   python_to_arrow.h
│   │   │   │   │   │   │   │   type_traits.h
│   │   │   │   │   │   │   │   udf.cc
│   │   │   │   │   │   │   │   udf.h
│   │   │   │   │   │   │   │   util.cc
│   │   │   │   │   │   │   │   util.h
│   │   │   │   │   │   │   │   visibility.h
│   │   │   │   │   │   │   │   ├── vendored/
│   │   │   │   │   │   │   │   │   CMakeLists.txt
│   │   │   │   │   │   │   │   │   pythoncapi_compat.h
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   arrow_16597.py
│   │   │   │   │   │   arrow_39313.py
│   │   │   │   │   │   arrow_7980.py
│   │   │   │   │   │   bound_function_visit_strings.pyx
│   │   │   │   │   │   conftest.py
│   │   │   │   │   │   extensions.pyx
│   │   │   │   │   │   pandas_examples.py
│   │   │   │   │   │   pandas_threaded_import.py
│   │   │   │   │   │   pyarrow_cython_example.pyx
│   │   │   │   │   │   read_record_batch.py
│   │   │   │   │   │   strategies.py
│   │   │   │   │   │   test_acero.py
│   │   │   │   │   │   test_adhoc_memory_leak.py
│   │   │   │   │   │   test_array.py
│   │   │   │   │   │   test_builder.py
│   │   │   │   │   │   test_cffi.py
│   │   │   │   │   │   test_compute.py
│   │   │   │   │   │   test_convert_builtin.py
│   │   │   │   │   │   test_cpp_internals.py
│   │   │   │   │   │   test_csv.py
│   │   │   │   │   │   test_cuda.py
│   │   │   │   │   │   test_cuda_numba_interop.py
│   │   │   │   │   │   test_cython.py
│   │   │   │   │   │   test_dataset.py
│   │   │   │   │   │   test_dataset_encryption.py
│   │   │   │   │   │   test_deprecations.py
│   │   │   │   │   │   test_device.py
│   │   │   │   │   │   test_dlpack.py
│   │   │   │   │   │   test_exec_plan.py
│   │   │   │   │   │   test_extension_type.py
│   │   │   │   │   │   test_feather.py
│   │   │   │   │   │   test_flight.py
│   │   │   │   │   │   test_flight_async.py
│   │   │   │   │   │   test_fs.py
│   │   │   │   │   │   test_gandiva.py
│   │   │   │   │   │   test_gdb.py
│   │   │   │   │   │   test_io.py
│   │   │   │   │   │   test_ipc.py
│   │   │   │   │   │   test_json.py
│   │   │   │   │   │   test_jvm.py
│   │   │   │   │   │   test_memory.py
│   │   │   │   │   │   test_misc.py
│   │   │   │   │   │   test_orc.py
│   │   │   │   │   │   test_pandas.py
│   │   │   │   │   │   test_scalars.py
│   │   │   │   │   │   test_schema.py
│   │   │   │   │   │   test_sparse_tensor.py
│   │   │   │   │   │   test_strategies.py
│   │   │   │   │   │   test_substrait.py
│   │   │   │   │   │   test_table.py
│   │   │   │   │   │   test_tensor.py
│   │   │   │   │   │   test_types.py
│   │   │   │   │   │   test_udf.py
│   │   │   │   │   │   test_util.py
│   │   │   │   │   │   test_without_numpy.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   wsgi_examples.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   ├── feather/
│   │   │   │   │   │   │   │   v0.17.0.version.2-compression.lz4.feather
│   │   │   │   │   │   │   ├── orc/
│   │   │   │   │   │   │   │   decimal.jsn.gz
│   │   │   │   │   │   │   │   decimal.orc
│   │   │   │   │   │   │   │   README.md
│   │   │   │   │   │   │   │   TestOrcFile.emptyFile.jsn.gz
│   │   │   │   │   │   │   │   TestOrcFile.emptyFile.orc
│   │   │   │   │   │   │   │   TestOrcFile.test1.jsn.gz
│   │   │   │   │   │   │   │   TestOrcFile.test1.orc
│   │   │   │   │   │   │   │   TestOrcFile.testDate1900.jsn.gz
│   │   │   │   │   │   │   │   TestOrcFile.testDate1900.orc
│   │   │   │   │   │   │   ├── parquet/
│   │   │   │   │   │   │   │   v0.7.1.all-named-index.parquet
│   │   │   │   │   │   │   │   v0.7.1.column-metadata-handling.parquet
│   │   │   │   │   │   │   │   v0.7.1.parquet
│   │   │   │   │   │   │   │   v0.7.1.some-named-index.parquet
│   │   │   │   │   │   ├── interchange/
│   │   │   │   │   │   │   test_conversion.py
│   │   │   │   │   │   │   test_interchange_spec.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_conversion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interchange_spec.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── parquet/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   conftest.py
│   │   │   │   │   │   │   encryption.py
│   │   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   │   test_compliant_nested_type.py
│   │   │   │   │   │   │   test_dataset.py
│   │   │   │   │   │   │   test_data_types.py
│   │   │   │   │   │   │   test_datetime.py
│   │   │   │   │   │   │   test_encryption.py
│   │   │   │   │   │   │   test_metadata.py
│   │   │   │   │   │   │   test_pandas.py
│   │   │   │   │   │   │   test_parquet_file.py
│   │   │   │   │   │   │   test_parquet_writer.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   │   encryption.cpython-310.pyc
│   │   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_compliant_nested_type.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dataset.cpython-310.pyc
│   │   │   │   │   │   │   │   test_data_types.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datetime.cpython-310.pyc
│   │   │   │   │   │   │   │   test_encryption.cpython-310.pyc
│   │   │   │   │   │   │   │   test_metadata.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pandas.cpython-310.pyc
│   │   │   │   │   │   │   │   test_parquet_file.cpython-310.pyc
│   │   │   │   │   │   │   │   test_parquet_writer.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   arrow_16597.cpython-310.pyc
│   │   │   │   │   │   │   arrow_39313.cpython-310.pyc
│   │   │   │   │   │   │   arrow_7980.cpython-310.pyc
│   │   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   │   pandas_examples.cpython-310.pyc
│   │   │   │   │   │   │   pandas_threaded_import.cpython-310.pyc
│   │   │   │   │   │   │   read_record_batch.cpython-310.pyc
│   │   │   │   │   │   │   strategies.cpython-310.pyc
│   │   │   │   │   │   │   test_acero.cpython-310.pyc
│   │   │   │   │   │   │   test_adhoc_memory_leak.cpython-310.pyc
│   │   │   │   │   │   │   test_array.cpython-310.pyc
│   │   │   │   │   │   │   test_builder.cpython-310.pyc
│   │   │   │   │   │   │   test_cffi.cpython-310.pyc
│   │   │   │   │   │   │   test_compute.cpython-310.pyc
│   │   │   │   │   │   │   test_convert_builtin.cpython-310.pyc
│   │   │   │   │   │   │   test_cpp_internals.cpython-310.pyc
│   │   │   │   │   │   │   test_csv.cpython-310.pyc
│   │   │   │   │   │   │   test_cuda.cpython-310.pyc
│   │   │   │   │   │   │   test_cuda_numba_interop.cpython-310.pyc
│   │   │   │   │   │   │   test_cython.cpython-310.pyc
│   │   │   │   │   │   │   test_dataset.cpython-310.pyc
│   │   │   │   │   │   │   test_dataset_encryption.cpython-310.pyc
│   │   │   │   │   │   │   test_deprecations.cpython-310.pyc
│   │   │   │   │   │   │   test_device.cpython-310.pyc
│   │   │   │   │   │   │   test_dlpack.cpython-310.pyc
│   │   │   │   │   │   │   test_exec_plan.cpython-310.pyc
│   │   │   │   │   │   │   test_extension_type.cpython-310.pyc
│   │   │   │   │   │   │   test_feather.cpython-310.pyc
│   │   │   │   │   │   │   test_flight.cpython-310.pyc
│   │   │   │   │   │   │   test_flight_async.cpython-310.pyc
│   │   │   │   │   │   │   test_fs.cpython-310.pyc
│   │   │   │   │   │   │   test_gandiva.cpython-310.pyc
│   │   │   │   │   │   │   test_gdb.cpython-310.pyc
│   │   │   │   │   │   │   test_io.cpython-310.pyc
│   │   │   │   │   │   │   test_ipc.cpython-310.pyc
│   │   │   │   │   │   │   test_json.cpython-310.pyc
│   │   │   │   │   │   │   test_jvm.cpython-310.pyc
│   │   │   │   │   │   │   test_memory.cpython-310.pyc
│   │   │   │   │   │   │   test_misc.cpython-310.pyc
│   │   │   │   │   │   │   test_orc.cpython-310.pyc
│   │   │   │   │   │   │   test_pandas.cpython-310.pyc
│   │   │   │   │   │   │   test_scalars.cpython-310.pyc
│   │   │   │   │   │   │   test_schema.cpython-310.pyc
│   │   │   │   │   │   │   test_sparse_tensor.cpython-310.pyc
│   │   │   │   │   │   │   test_strategies.cpython-310.pyc
│   │   │   │   │   │   │   test_substrait.cpython-310.pyc
│   │   │   │   │   │   │   test_table.cpython-310.pyc
│   │   │   │   │   │   │   test_tensor.cpython-310.pyc
│   │   │   │   │   │   │   test_types.cpython-310.pyc
│   │   │   │   │   │   │   test_udf.cpython-310.pyc
│   │   │   │   │   │   │   test_util.cpython-310.pyc
│   │   │   │   │   │   │   test_without_numpy.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   wsgi_examples.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── vendored/
│   │   │   │   │   │   docscrape.py
│   │   │   │   │   │   version.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   docscrape.cpython-310.pyc
│   │   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   acero.cpython-310.pyc
│   │   │   │   │   │   benchmark.cpython-310.pyc
│   │   │   │   │   │   cffi.cpython-310.pyc
│   │   │   │   │   │   compute.cpython-310.pyc
│   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   csv.cpython-310.pyc
│   │   │   │   │   │   cuda.cpython-310.pyc
│   │   │   │   │   │   dataset.cpython-310.pyc
│   │   │   │   │   │   feather.cpython-310.pyc
│   │   │   │   │   │   flight.cpython-310.pyc
│   │   │   │   │   │   fs.cpython-310.pyc
│   │   │   │   │   │   ipc.cpython-310.pyc
│   │   │   │   │   │   json.cpython-310.pyc
│   │   │   │   │   │   jvm.cpython-310.pyc
│   │   │   │   │   │   orc.cpython-310.pyc
│   │   │   │   │   │   pandas_compat.cpython-310.pyc
│   │   │   │   │   │   substrait.cpython-310.pyc
│   │   │   │   │   │   types.cpython-310.pyc
│   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   _compute_docstrings.cpython-310.pyc
│   │   │   │   │   │   _generated_version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── pyarrow-21.0.0.dist-info/
│   │   │   │   │   DELVEWHEEL
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE.txt
│   │   │   │   │   METADATA
│   │   │   │   │   NOTICE.txt
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── pyarrow.libs/
│   │   │   │   │   msvcp140-a118642f3ae8774fb9dc223e15c4a52e.dll
│   │   │   │   ├── pydeck/
│   │   │   │   │   .DS_Store
│   │   │   │   │   frontend_semver.py
│   │   │   │   │   settings.py
│   │   │   │   │   _version.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── bindings/
│   │   │   │   │   │   base_map_provider.py
│   │   │   │   │   │   deck.py
│   │   │   │   │   │   json_tools.py
│   │   │   │   │   │   layer.py
│   │   │   │   │   │   light_settings.py
│   │   │   │   │   │   map_styles.py
│   │   │   │   │   │   view.py
│   │   │   │   │   │   view_state.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base_map_provider.cpython-310.pyc
│   │   │   │   │   │   │   deck.cpython-310.pyc
│   │   │   │   │   │   │   json_tools.cpython-310.pyc
│   │   │   │   │   │   │   layer.cpython-310.pyc
│   │   │   │   │   │   │   light_settings.cpython-310.pyc
│   │   │   │   │   │   │   map_styles.cpython-310.pyc
│   │   │   │   │   │   │   view.cpython-310.pyc
│   │   │   │   │   │   │   view_state.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── data_utils/
│   │   │   │   │   │   binary_transfer.py
│   │   │   │   │   │   color_scales.py
│   │   │   │   │   │   type_checking.py
│   │   │   │   │   │   viewport_helpers.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   binary_transfer.cpython-310.pyc
│   │   │   │   │   │   │   color_scales.cpython-310.pyc
│   │   │   │   │   │   │   type_checking.cpython-310.pyc
│   │   │   │   │   │   │   viewport_helpers.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── exceptions/
│   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── io/
│   │   │   │   │   │   .DS_Store
│   │   │   │   │   │   html.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── templates/
│   │   │   │   │   │   │   index.j2
│   │   │   │   │   │   │   style.j2
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   html.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── nbextension/
│   │   │   │   │   │   .DS_Store
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── static/
│   │   │   │   │   │   │   .DS_Store
│   │   │   │   │   │   │   .gitkeep
│   │   │   │   │   │   │   extensionRequires.js
│   │   │   │   │   │   │   index.js
│   │   │   │   │   │   │   index.js.map
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── types/
│   │   │   │   │   │   base.py
│   │   │   │   │   │   function.py
│   │   │   │   │   │   image.py
│   │   │   │   │   │   string.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   function.cpython-310.pyc
│   │   │   │   │   │   │   image.cpython-310.pyc
│   │   │   │   │   │   │   string.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── widget/
│   │   │   │   │   │   debounce.py
│   │   │   │   │   │   widget.py
│   │   │   │   │   │   _frontend.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   debounce.cpython-310.pyc
│   │   │   │   │   │   │   widget.cpython-310.pyc
│   │   │   │   │   │   │   _frontend.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   frontend_semver.cpython-310.pyc
│   │   │   │   │   │   settings.cpython-310.pyc
│   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── pydeck-0.9.1.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE.txt
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── pyparsing/
│   │   │   │   │   actions.py
│   │   │   │   │   common.py
│   │   │   │   │   core.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   helpers.py
│   │   │   │   │   py.typed
│   │   │   │   │   results.py
│   │   │   │   │   testing.py
│   │   │   │   │   unicode.py
│   │   │   │   │   util.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── diagram/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tools/
│   │   │   │   │   │   cvt_pyparsing_pep8_names.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   cvt_pyparsing_pep8_names.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   actions.cpython-310.pyc
│   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   helpers.cpython-310.pyc
│   │   │   │   │   │   results.cpython-310.pyc
│   │   │   │   │   │   testing.cpython-310.pyc
│   │   │   │   │   │   unicode.cpython-310.pyc
│   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── pyparsing-3.2.5.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── python_dateutil-2.9.0.post0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   zip-safe
│   │   │   │   ├── pytz/
│   │   │   │   │   exceptions.py
│   │   │   │   │   lazy.py
│   │   │   │   │   reference.py
│   │   │   │   │   tzfile.py
│   │   │   │   │   tzinfo.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── zoneinfo/
│   │   │   │   │   │   CET
│   │   │   │   │   │   CST6CDT
│   │   │   │   │   │   Cuba
│   │   │   │   │   │   EET
│   │   │   │   │   │   Egypt
│   │   │   │   │   │   Eire
│   │   │   │   │   │   EST
│   │   │   │   │   │   EST5EDT
│   │   │   │   │   │   Factory
│   │   │   │   │   │   GB
│   │   │   │   │   │   GB-Eire
│   │   │   │   │   │   GMT
│   │   │   │   │   │   GMT+0
│   │   │   │   │   │   GMT-0
│   │   │   │   │   │   GMT0
│   │   │   │   │   │   Greenwich
│   │   │   │   │   │   Hongkong
│   │   │   │   │   │   HST
│   │   │   │   │   │   Iceland
│   │   │   │   │   │   Iran
│   │   │   │   │   │   iso3166.tab
│   │   │   │   │   │   Israel
│   │   │   │   │   │   Jamaica
│   │   │   │   │   │   Japan
│   │   │   │   │   │   Kwajalein
│   │   │   │   │   │   leapseconds
│   │   │   │   │   │   Libya
│   │   │   │   │   │   MET
│   │   │   │   │   │   MST
│   │   │   │   │   │   MST7MDT
│   │   │   │   │   │   Navajo
│   │   │   │   │   │   NZ
│   │   │   │   │   │   NZ-CHAT
│   │   │   │   │   │   Poland
│   │   │   │   │   │   Portugal
│   │   │   │   │   │   PRC
│   │   │   │   │   │   PST8PDT
│   │   │   │   │   │   ROC
│   │   │   │   │   │   ROK
│   │   │   │   │   │   Singapore
│   │   │   │   │   │   Turkey
│   │   │   │   │   │   tzdata.zi
│   │   │   │   │   │   UCT
│   │   │   │   │   │   Universal
│   │   │   │   │   │   UTC
│   │   │   │   │   │   W-SU
│   │   │   │   │   │   WET
│   │   │   │   │   │   zone.tab
│   │   │   │   │   │   zone1970.tab
│   │   │   │   │   │   zonenow.tab
│   │   │   │   │   │   Zulu
│   │   │   │   │   │   ├── Africa/
│   │   │   │   │   │   │   Abidjan
│   │   │   │   │   │   │   Accra
│   │   │   │   │   │   │   Addis_Ababa
│   │   │   │   │   │   │   Algiers
│   │   │   │   │   │   │   Asmara
│   │   │   │   │   │   │   Asmera
│   │   │   │   │   │   │   Bamako
│   │   │   │   │   │   │   Bangui
│   │   │   │   │   │   │   Banjul
│   │   │   │   │   │   │   Bissau
│   │   │   │   │   │   │   Blantyre
│   │   │   │   │   │   │   Brazzaville
│   │   │   │   │   │   │   Bujumbura
│   │   │   │   │   │   │   Cairo
│   │   │   │   │   │   │   Casablanca
│   │   │   │   │   │   │   Ceuta
│   │   │   │   │   │   │   Conakry
│   │   │   │   │   │   │   Dakar
│   │   │   │   │   │   │   Dar_es_Salaam
│   │   │   │   │   │   │   Djibouti
│   │   │   │   │   │   │   Douala
│   │   │   │   │   │   │   El_Aaiun
│   │   │   │   │   │   │   Freetown
│   │   │   │   │   │   │   Gaborone
│   │   │   │   │   │   │   Harare
│   │   │   │   │   │   │   Johannesburg
│   │   │   │   │   │   │   Juba
│   │   │   │   │   │   │   Kampala
│   │   │   │   │   │   │   Khartoum
│   │   │   │   │   │   │   Kigali
│   │   │   │   │   │   │   Kinshasa
│   │   │   │   │   │   │   Lagos
│   │   │   │   │   │   │   Libreville
│   │   │   │   │   │   │   Lome
│   │   │   │   │   │   │   Luanda
│   │   │   │   │   │   │   Lubumbashi
│   │   │   │   │   │   │   Lusaka
│   │   │   │   │   │   │   Malabo
│   │   │   │   │   │   │   Maputo
│   │   │   │   │   │   │   Maseru
│   │   │   │   │   │   │   Mbabane
│   │   │   │   │   │   │   Mogadishu
│   │   │   │   │   │   │   Monrovia
│   │   │   │   │   │   │   Nairobi
│   │   │   │   │   │   │   Ndjamena
│   │   │   │   │   │   │   Niamey
│   │   │   │   │   │   │   Nouakchott
│   │   │   │   │   │   │   Ouagadougou
│   │   │   │   │   │   │   Porto-Novo
│   │   │   │   │   │   │   Sao_Tome
│   │   │   │   │   │   │   Timbuktu
│   │   │   │   │   │   │   Tripoli
│   │   │   │   │   │   │   Tunis
│   │   │   │   │   │   │   Windhoek
│   │   │   │   │   │   ├── America/
│   │   │   │   │   │   │   Adak
│   │   │   │   │   │   │   Anchorage
│   │   │   │   │   │   │   Anguilla
│   │   │   │   │   │   │   Antigua
│   │   │   │   │   │   │   Araguaina
│   │   │   │   │   │   │   Aruba
│   │   │   │   │   │   │   Asuncion
│   │   │   │   │   │   │   Atikokan
│   │   │   │   │   │   │   Atka
│   │   │   │   │   │   │   Bahia
│   │   │   │   │   │   │   Bahia_Banderas
│   │   │   │   │   │   │   Barbados
│   │   │   │   │   │   │   Belem
│   │   │   │   │   │   │   Belize
│   │   │   │   │   │   │   Blanc-Sablon
│   │   │   │   │   │   │   Boa_Vista
│   │   │   │   │   │   │   Bogota
│   │   │   │   │   │   │   Boise
│   │   │   │   │   │   │   Buenos_Aires
│   │   │   │   │   │   │   Cambridge_Bay
│   │   │   │   │   │   │   Campo_Grande
│   │   │   │   │   │   │   Cancun
│   │   │   │   │   │   │   Caracas
│   │   │   │   │   │   │   Catamarca
│   │   │   │   │   │   │   Cayenne
│   │   │   │   │   │   │   Cayman
│   │   │   │   │   │   │   Chicago
│   │   │   │   │   │   │   Chihuahua
│   │   │   │   │   │   │   Ciudad_Juarez
│   │   │   │   │   │   │   Coral_Harbour
│   │   │   │   │   │   │   Cordoba
│   │   │   │   │   │   │   Costa_Rica
│   │   │   │   │   │   │   Coyhaique
│   │   │   │   │   │   │   Creston
│   │   │   │   │   │   │   Cuiaba
│   │   │   │   │   │   │   Curacao
│   │   │   │   │   │   │   Danmarkshavn
│   │   │   │   │   │   │   Dawson
│   │   │   │   │   │   │   Dawson_Creek
│   │   │   │   │   │   │   Denver
│   │   │   │   │   │   │   Detroit
│   │   │   │   │   │   │   Dominica
│   │   │   │   │   │   │   Edmonton
│   │   │   │   │   │   │   Eirunepe
│   │   │   │   │   │   │   El_Salvador
│   │   │   │   │   │   │   Ensenada
│   │   │   │   │   │   │   Fortaleza
│   │   │   │   │   │   │   Fort_Nelson
│   │   │   │   │   │   │   Fort_Wayne
│   │   │   │   │   │   │   Glace_Bay
│   │   │   │   │   │   │   Godthab
│   │   │   │   │   │   │   Goose_Bay
│   │   │   │   │   │   │   Grand_Turk
│   │   │   │   │   │   │   Grenada
│   │   │   │   │   │   │   Guadeloupe
│   │   │   │   │   │   │   Guatemala
│   │   │   │   │   │   │   Guayaquil
│   │   │   │   │   │   │   Guyana
│   │   │   │   │   │   │   Halifax
│   │   │   │   │   │   │   Havana
│   │   │   │   │   │   │   Hermosillo
│   │   │   │   │   │   │   Indianapolis
│   │   │   │   │   │   │   Inuvik
│   │   │   │   │   │   │   Iqaluit
│   │   │   │   │   │   │   Jamaica
│   │   │   │   │   │   │   Jujuy
│   │   │   │   │   │   │   Juneau
│   │   │   │   │   │   │   Knox_IN
│   │   │   │   │   │   │   Kralendijk
│   │   │   │   │   │   │   La_Paz
│   │   │   │   │   │   │   Lima
│   │   │   │   │   │   │   Los_Angeles
│   │   │   │   │   │   │   Louisville
│   │   │   │   │   │   │   Lower_Princes
│   │   │   │   │   │   │   Maceio
│   │   │   │   │   │   │   Managua
│   │   │   │   │   │   │   Manaus
│   │   │   │   │   │   │   Marigot
│   │   │   │   │   │   │   Martinique
│   │   │   │   │   │   │   Matamoros
│   │   │   │   │   │   │   Mazatlan
│   │   │   │   │   │   │   Mendoza
│   │   │   │   │   │   │   Menominee
│   │   │   │   │   │   │   Merida
│   │   │   │   │   │   │   Metlakatla
│   │   │   │   │   │   │   Mexico_City
│   │   │   │   │   │   │   Miquelon
│   │   │   │   │   │   │   Moncton
│   │   │   │   │   │   │   Monterrey
│   │   │   │   │   │   │   Montevideo
│   │   │   │   │   │   │   Montreal
│   │   │   │   │   │   │   Montserrat
│   │   │   │   │   │   │   Nassau
│   │   │   │   │   │   │   New_York
│   │   │   │   │   │   │   Nipigon
│   │   │   │   │   │   │   Nome
│   │   │   │   │   │   │   Noronha
│   │   │   │   │   │   │   Nuuk
│   │   │   │   │   │   │   Ojinaga
│   │   │   │   │   │   │   Panama
│   │   │   │   │   │   │   Pangnirtung
│   │   │   │   │   │   │   Paramaribo
│   │   │   │   │   │   │   Phoenix
│   │   │   │   │   │   │   Port-au-Prince
│   │   │   │   │   │   │   Porto_Acre
│   │   │   │   │   │   │   Porto_Velho
│   │   │   │   │   │   │   Port_of_Spain
│   │   │   │   │   │   │   Puerto_Rico
│   │   │   │   │   │   │   Punta_Arenas
│   │   │   │   │   │   │   Rainy_River
│   │   │   │   │   │   │   Rankin_Inlet
│   │   │   │   │   │   │   Recife
│   │   │   │   │   │   │   Regina
│   │   │   │   │   │   │   Resolute
│   │   │   │   │   │   │   Rio_Branco
│   │   │   │   │   │   │   Rosario
│   │   │   │   │   │   │   Santarem
│   │   │   │   │   │   │   Santa_Isabel
│   │   │   │   │   │   │   Santiago
│   │   │   │   │   │   │   Santo_Domingo
│   │   │   │   │   │   │   Sao_Paulo
│   │   │   │   │   │   │   Scoresbysund
│   │   │   │   │   │   │   Shiprock
│   │   │   │   │   │   │   Sitka
│   │   │   │   │   │   │   St_Barthelemy
│   │   │   │   │   │   │   St_Johns
│   │   │   │   │   │   │   St_Kitts
│   │   │   │   │   │   │   St_Lucia
│   │   │   │   │   │   │   St_Thomas
│   │   │   │   │   │   │   St_Vincent
│   │   │   │   │   │   │   Swift_Current
│   │   │   │   │   │   │   Tegucigalpa
│   │   │   │   │   │   │   Thule
│   │   │   │   │   │   │   Thunder_Bay
│   │   │   │   │   │   │   Tijuana
│   │   │   │   │   │   │   Toronto
│   │   │   │   │   │   │   Tortola
│   │   │   │   │   │   │   Vancouver
│   │   │   │   │   │   │   Virgin
│   │   │   │   │   │   │   Whitehorse
│   │   │   │   │   │   │   Winnipeg
│   │   │   │   │   │   │   Yakutat
│   │   │   │   │   │   │   Yellowknife
│   │   │   │   │   │   │   ├── Argentina/
│   │   │   │   │   │   │   │   Buenos_Aires
│   │   │   │   │   │   │   │   Catamarca
│   │   │   │   │   │   │   │   ComodRivadavia
│   │   │   │   │   │   │   │   Cordoba
│   │   │   │   │   │   │   │   Jujuy
│   │   │   │   │   │   │   │   La_Rioja
│   │   │   │   │   │   │   │   Mendoza
│   │   │   │   │   │   │   │   Rio_Gallegos
│   │   │   │   │   │   │   │   Salta
│   │   │   │   │   │   │   │   San_Juan
│   │   │   │   │   │   │   │   San_Luis
│   │   │   │   │   │   │   │   Tucuman
│   │   │   │   │   │   │   │   Ushuaia
│   │   │   │   │   │   │   ├── Indiana/
│   │   │   │   │   │   │   │   Indianapolis
│   │   │   │   │   │   │   │   Knox
│   │   │   │   │   │   │   │   Marengo
│   │   │   │   │   │   │   │   Petersburg
│   │   │   │   │   │   │   │   Tell_City
│   │   │   │   │   │   │   │   Vevay
│   │   │   │   │   │   │   │   Vincennes
│   │   │   │   │   │   │   │   Winamac
│   │   │   │   │   │   │   ├── Kentucky/
│   │   │   │   │   │   │   │   Louisville
│   │   │   │   │   │   │   │   Monticello
│   │   │   │   │   │   │   ├── North_Dakota/
│   │   │   │   │   │   │   │   Beulah
│   │   │   │   │   │   │   │   Center
│   │   │   │   │   │   │   │   New_Salem
│   │   │   │   │   │   ├── Antarctica/
│   │   │   │   │   │   │   Casey
│   │   │   │   │   │   │   Davis
│   │   │   │   │   │   │   DumontDUrville
│   │   │   │   │   │   │   Macquarie
│   │   │   │   │   │   │   Mawson
│   │   │   │   │   │   │   McMurdo
│   │   │   │   │   │   │   Palmer
│   │   │   │   │   │   │   Rothera
│   │   │   │   │   │   │   South_Pole
│   │   │   │   │   │   │   Syowa
│   │   │   │   │   │   │   Troll
│   │   │   │   │   │   │   Vostok
│   │   │   │   │   │   ├── Arctic/
│   │   │   │   │   │   │   Longyearbyen
│   │   │   │   │   │   ├── Asia/
│   │   │   │   │   │   │   Aden
│   │   │   │   │   │   │   Almaty
│   │   │   │   │   │   │   Amman
│   │   │   │   │   │   │   Anadyr
│   │   │   │   │   │   │   Aqtau
│   │   │   │   │   │   │   Aqtobe
│   │   │   │   │   │   │   Ashgabat
│   │   │   │   │   │   │   Ashkhabad
│   │   │   │   │   │   │   Atyrau
│   │   │   │   │   │   │   Baghdad
│   │   │   │   │   │   │   Bahrain
│   │   │   │   │   │   │   Baku
│   │   │   │   │   │   │   Bangkok
│   │   │   │   │   │   │   Barnaul
│   │   │   │   │   │   │   Beirut
│   │   │   │   │   │   │   Bishkek
│   │   │   │   │   │   │   Brunei
│   │   │   │   │   │   │   Calcutta
│   │   │   │   │   │   │   Chita
│   │   │   │   │   │   │   Choibalsan
│   │   │   │   │   │   │   Chongqing
│   │   │   │   │   │   │   Chungking
│   │   │   │   │   │   │   Colombo
│   │   │   │   │   │   │   Dacca
│   │   │   │   │   │   │   Damascus
│   │   │   │   │   │   │   Dhaka
│   │   │   │   │   │   │   Dili
│   │   │   │   │   │   │   Dubai
│   │   │   │   │   │   │   Dushanbe
│   │   │   │   │   │   │   Famagusta
│   │   │   │   │   │   │   Gaza
│   │   │   │   │   │   │   Harbin
│   │   │   │   │   │   │   Hebron
│   │   │   │   │   │   │   Hong_Kong
│   │   │   │   │   │   │   Hovd
│   │   │   │   │   │   │   Ho_Chi_Minh
│   │   │   │   │   │   │   Irkutsk
│   │   │   │   │   │   │   Istanbul
│   │   │   │   │   │   │   Jakarta
│   │   │   │   │   │   │   Jayapura
│   │   │   │   │   │   │   Jerusalem
│   │   │   │   │   │   │   Kabul
│   │   │   │   │   │   │   Kamchatka
│   │   │   │   │   │   │   Karachi
│   │   │   │   │   │   │   Kashgar
│   │   │   │   │   │   │   Kathmandu
│   │   │   │   │   │   │   Katmandu
│   │   │   │   │   │   │   Khandyga
│   │   │   │   │   │   │   Kolkata
│   │   │   │   │   │   │   Krasnoyarsk
│   │   │   │   │   │   │   Kuala_Lumpur
│   │   │   │   │   │   │   Kuching
│   │   │   │   │   │   │   Kuwait
│   │   │   │   │   │   │   Macao
│   │   │   │   │   │   │   Macau
│   │   │   │   │   │   │   Magadan
│   │   │   │   │   │   │   Makassar
│   │   │   │   │   │   │   Manila
│   │   │   │   │   │   │   Muscat
│   │   │   │   │   │   │   Nicosia
│   │   │   │   │   │   │   Novokuznetsk
│   │   │   │   │   │   │   Novosibirsk
│   │   │   │   │   │   │   Omsk
│   │   │   │   │   │   │   Oral
│   │   │   │   │   │   │   Phnom_Penh
│   │   │   │   │   │   │   Pontianak
│   │   │   │   │   │   │   Pyongyang
│   │   │   │   │   │   │   Qatar
│   │   │   │   │   │   │   Qostanay
│   │   │   │   │   │   │   Qyzylorda
│   │   │   │   │   │   │   Rangoon
│   │   │   │   │   │   │   Riyadh
│   │   │   │   │   │   │   Saigon
│   │   │   │   │   │   │   Sakhalin
│   │   │   │   │   │   │   Samarkand
│   │   │   │   │   │   │   Seoul
│   │   │   │   │   │   │   Shanghai
│   │   │   │   │   │   │   Singapore
│   │   │   │   │   │   │   Srednekolymsk
│   │   │   │   │   │   │   Taipei
│   │   │   │   │   │   │   Tashkent
│   │   │   │   │   │   │   Tbilisi
│   │   │   │   │   │   │   Tehran
│   │   │   │   │   │   │   Tel_Aviv
│   │   │   │   │   │   │   Thimbu
│   │   │   │   │   │   │   Thimphu
│   │   │   │   │   │   │   Tokyo
│   │   │   │   │   │   │   Tomsk
│   │   │   │   │   │   │   Ujung_Pandang
│   │   │   │   │   │   │   Ulaanbaatar
│   │   │   │   │   │   │   Ulan_Bator
│   │   │   │   │   │   │   Urumqi
│   │   │   │   │   │   │   Ust-Nera
│   │   │   │   │   │   │   Vientiane
│   │   │   │   │   │   │   Vladivostok
│   │   │   │   │   │   │   Yakutsk
│   │   │   │   │   │   │   Yangon
│   │   │   │   │   │   │   Yekaterinburg
│   │   │   │   │   │   │   Yerevan
│   │   │   │   │   │   ├── Atlantic/
│   │   │   │   │   │   │   Azores
│   │   │   │   │   │   │   Bermuda
│   │   │   │   │   │   │   Canary
│   │   │   │   │   │   │   Cape_Verde
│   │   │   │   │   │   │   Faeroe
│   │   │   │   │   │   │   Faroe
│   │   │   │   │   │   │   Jan_Mayen
│   │   │   │   │   │   │   Madeira
│   │   │   │   │   │   │   Reykjavik
│   │   │   │   │   │   │   South_Georgia
│   │   │   │   │   │   │   Stanley
│   │   │   │   │   │   │   St_Helena
│   │   │   │   │   │   ├── Australia/
│   │   │   │   │   │   │   ACT
│   │   │   │   │   │   │   Adelaide
│   │   │   │   │   │   │   Brisbane
│   │   │   │   │   │   │   Broken_Hill
│   │   │   │   │   │   │   Canberra
│   │   │   │   │   │   │   Currie
│   │   │   │   │   │   │   Darwin
│   │   │   │   │   │   │   Eucla
│   │   │   │   │   │   │   Hobart
│   │   │   │   │   │   │   LHI
│   │   │   │   │   │   │   Lindeman
│   │   │   │   │   │   │   Lord_Howe
│   │   │   │   │   │   │   Melbourne
│   │   │   │   │   │   │   North
│   │   │   │   │   │   │   NSW
│   │   │   │   │   │   │   Perth
│   │   │   │   │   │   │   Queensland
│   │   │   │   │   │   │   South
│   │   │   │   │   │   │   Sydney
│   │   │   │   │   │   │   Tasmania
│   │   │   │   │   │   │   Victoria
│   │   │   │   │   │   │   West
│   │   │   │   │   │   │   Yancowinna
│   │   │   │   │   │   ├── Brazil/
│   │   │   │   │   │   │   Acre
│   │   │   │   │   │   │   DeNoronha
│   │   │   │   │   │   │   East
│   │   │   │   │   │   │   West
│   │   │   │   │   │   ├── Canada/
│   │   │   │   │   │   │   Atlantic
│   │   │   │   │   │   │   Central
│   │   │   │   │   │   │   Eastern
│   │   │   │   │   │   │   Mountain
│   │   │   │   │   │   │   Newfoundland
│   │   │   │   │   │   │   Pacific
│   │   │   │   │   │   │   Saskatchewan
│   │   │   │   │   │   │   Yukon
│   │   │   │   │   │   ├── Chile/
│   │   │   │   │   │   │   Continental
│   │   │   │   │   │   │   EasterIsland
│   │   │   │   │   │   ├── Etc/
│   │   │   │   │   │   │   GMT
│   │   │   │   │   │   │   GMT+0
│   │   │   │   │   │   │   GMT+1
│   │   │   │   │   │   │   GMT+10
│   │   │   │   │   │   │   GMT+11
│   │   │   │   │   │   │   GMT+12
│   │   │   │   │   │   │   GMT+2
│   │   │   │   │   │   │   GMT+3
│   │   │   │   │   │   │   GMT+4
│   │   │   │   │   │   │   GMT+5
│   │   │   │   │   │   │   GMT+6
│   │   │   │   │   │   │   GMT+7
│   │   │   │   │   │   │   GMT+8
│   │   │   │   │   │   │   GMT+9
│   │   │   │   │   │   │   GMT-0
│   │   │   │   │   │   │   GMT-1
│   │   │   │   │   │   │   GMT-10
│   │   │   │   │   │   │   GMT-11
│   │   │   │   │   │   │   GMT-12
│   │   │   │   │   │   │   GMT-13
│   │   │   │   │   │   │   GMT-14
│   │   │   │   │   │   │   GMT-2
│   │   │   │   │   │   │   GMT-3
│   │   │   │   │   │   │   GMT-4
│   │   │   │   │   │   │   GMT-5
│   │   │   │   │   │   │   GMT-6
│   │   │   │   │   │   │   GMT-7
│   │   │   │   │   │   │   GMT-8
│   │   │   │   │   │   │   GMT-9
│   │   │   │   │   │   │   GMT0
│   │   │   │   │   │   │   Greenwich
│   │   │   │   │   │   │   UCT
│   │   │   │   │   │   │   Universal
│   │   │   │   │   │   │   UTC
│   │   │   │   │   │   │   Zulu
│   │   │   │   │   │   ├── Europe/
│   │   │   │   │   │   │   Amsterdam
│   │   │   │   │   │   │   Andorra
│   │   │   │   │   │   │   Astrakhan
│   │   │   │   │   │   │   Athens
│   │   │   │   │   │   │   Belfast
│   │   │   │   │   │   │   Belgrade
│   │   │   │   │   │   │   Berlin
│   │   │   │   │   │   │   Bratislava
│   │   │   │   │   │   │   Brussels
│   │   │   │   │   │   │   Bucharest
│   │   │   │   │   │   │   Budapest
│   │   │   │   │   │   │   Busingen
│   │   │   │   │   │   │   Chisinau
│   │   │   │   │   │   │   Copenhagen
│   │   │   │   │   │   │   Dublin
│   │   │   │   │   │   │   Gibraltar
│   │   │   │   │   │   │   Guernsey
│   │   │   │   │   │   │   Helsinki
│   │   │   │   │   │   │   Isle_of_Man
│   │   │   │   │   │   │   Istanbul
│   │   │   │   │   │   │   Jersey
│   │   │   │   │   │   │   Kaliningrad
│   │   │   │   │   │   │   Kiev
│   │   │   │   │   │   │   Kirov
│   │   │   │   │   │   │   Kyiv
│   │   │   │   │   │   │   Lisbon
│   │   │   │   │   │   │   Ljubljana
│   │   │   │   │   │   │   London
│   │   │   │   │   │   │   Luxembourg
│   │   │   │   │   │   │   Madrid
│   │   │   │   │   │   │   Malta
│   │   │   │   │   │   │   Mariehamn
│   │   │   │   │   │   │   Minsk
│   │   │   │   │   │   │   Monaco
│   │   │   │   │   │   │   Moscow
│   │   │   │   │   │   │   Nicosia
│   │   │   │   │   │   │   Oslo
│   │   │   │   │   │   │   Paris
│   │   │   │   │   │   │   Podgorica
│   │   │   │   │   │   │   Prague
│   │   │   │   │   │   │   Riga
│   │   │   │   │   │   │   Rome
│   │   │   │   │   │   │   Samara
│   │   │   │   │   │   │   San_Marino
│   │   │   │   │   │   │   Sarajevo
│   │   │   │   │   │   │   Saratov
│   │   │   │   │   │   │   Simferopol
│   │   │   │   │   │   │   Skopje
│   │   │   │   │   │   │   Sofia
│   │   │   │   │   │   │   Stockholm
│   │   │   │   │   │   │   Tallinn
│   │   │   │   │   │   │   Tirane
│   │   │   │   │   │   │   Tiraspol
│   │   │   │   │   │   │   Ulyanovsk
│   │   │   │   │   │   │   Uzhgorod
│   │   │   │   │   │   │   Vaduz
│   │   │   │   │   │   │   Vatican
│   │   │   │   │   │   │   Vienna
│   │   │   │   │   │   │   Vilnius
│   │   │   │   │   │   │   Volgograd
│   │   │   │   │   │   │   Warsaw
│   │   │   │   │   │   │   Zagreb
│   │   │   │   │   │   │   Zaporozhye
│   │   │   │   │   │   │   Zurich
│   │   │   │   │   │   ├── Indian/
│   │   │   │   │   │   │   Antananarivo
│   │   │   │   │   │   │   Chagos
│   │   │   │   │   │   │   Christmas
│   │   │   │   │   │   │   Cocos
│   │   │   │   │   │   │   Comoro
│   │   │   │   │   │   │   Kerguelen
│   │   │   │   │   │   │   Mahe
│   │   │   │   │   │   │   Maldives
│   │   │   │   │   │   │   Mauritius
│   │   │   │   │   │   │   Mayotte
│   │   │   │   │   │   │   Reunion
│   │   │   │   │   │   ├── Mexico/
│   │   │   │   │   │   │   BajaNorte
│   │   │   │   │   │   │   BajaSur
│   │   │   │   │   │   │   General
│   │   │   │   │   │   ├── Pacific/
│   │   │   │   │   │   │   Apia
│   │   │   │   │   │   │   Auckland
│   │   │   │   │   │   │   Bougainville
│   │   │   │   │   │   │   Chatham
│   │   │   │   │   │   │   Chuuk
│   │   │   │   │   │   │   Easter
│   │   │   │   │   │   │   Efate
│   │   │   │   │   │   │   Enderbury
│   │   │   │   │   │   │   Fakaofo
│   │   │   │   │   │   │   Fiji
│   │   │   │   │   │   │   Funafuti
│   │   │   │   │   │   │   Galapagos
│   │   │   │   │   │   │   Gambier
│   │   │   │   │   │   │   Guadalcanal
│   │   │   │   │   │   │   Guam
│   │   │   │   │   │   │   Honolulu
│   │   │   │   │   │   │   Johnston
│   │   │   │   │   │   │   Kanton
│   │   │   │   │   │   │   Kiritimati
│   │   │   │   │   │   │   Kosrae
│   │   │   │   │   │   │   Kwajalein
│   │   │   │   │   │   │   Majuro
│   │   │   │   │   │   │   Marquesas
│   │   │   │   │   │   │   Midway
│   │   │   │   │   │   │   Nauru
│   │   │   │   │   │   │   Niue
│   │   │   │   │   │   │   Norfolk
│   │   │   │   │   │   │   Noumea
│   │   │   │   │   │   │   Pago_Pago
│   │   │   │   │   │   │   Palau
│   │   │   │   │   │   │   Pitcairn
│   │   │   │   │   │   │   Pohnpei
│   │   │   │   │   │   │   Ponape
│   │   │   │   │   │   │   Port_Moresby
│   │   │   │   │   │   │   Rarotonga
│   │   │   │   │   │   │   Saipan
│   │   │   │   │   │   │   Samoa
│   │   │   │   │   │   │   Tahiti
│   │   │   │   │   │   │   Tarawa
│   │   │   │   │   │   │   Tongatapu
│   │   │   │   │   │   │   Truk
│   │   │   │   │   │   │   Wake
│   │   │   │   │   │   │   Wallis
│   │   │   │   │   │   │   Yap
│   │   │   │   │   │   ├── US/
│   │   │   │   │   │   │   Alaska
│   │   │   │   │   │   │   Aleutian
│   │   │   │   │   │   │   Arizona
│   │   │   │   │   │   │   Central
│   │   │   │   │   │   │   East-Indiana
│   │   │   │   │   │   │   Eastern
│   │   │   │   │   │   │   Hawaii
│   │   │   │   │   │   │   Indiana-Starke
│   │   │   │   │   │   │   Michigan
│   │   │   │   │   │   │   Mountain
│   │   │   │   │   │   │   Pacific
│   │   │   │   │   │   │   Samoa
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   lazy.cpython-310.pyc
│   │   │   │   │   │   reference.cpython-310.pyc
│   │   │   │   │   │   tzfile.cpython-310.pyc
│   │   │   │   │   │   tzinfo.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── pytz-2025.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE.txt
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   zip-safe
│   │   │   │   ├── rebound/
│   │   │   │   │   binary_field_descriptor.py
│   │   │   │   │   citations.py
│   │   │   │   │   data.py
│   │   │   │   │   hash.py
│   │   │   │   │   horizons.py
│   │   │   │   │   orbit.py
│   │   │   │   │   particle.py
│   │   │   │   │   particles.py
│   │   │   │   │   plotting.py
│   │   │   │   │   rebound.h
│   │   │   │   │   rotation.py
│   │   │   │   │   simulation.py
│   │   │   │   │   simulationarchive.py
│   │   │   │   │   tools.py
│   │   │   │   │   units.py
│   │   │   │   │   variation.py
│   │   │   │   │   vectors.py
│   │   │   │   │   widget.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── integrators/
│   │   │   │   │   │   bs.py
│   │   │   │   │   │   eos.py
│   │   │   │   │   │   ias15.py
│   │   │   │   │   │   janus.py
│   │   │   │   │   │   mercurius.py
│   │   │   │   │   │   saba.py
│   │   │   │   │   │   sei.py
│   │   │   │   │   │   trace.py
│   │   │   │   │   │   whfast.py
│   │   │   │   │   │   whfast512.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   bs.cpython-310.pyc
│   │   │   │   │   │   │   eos.cpython-310.pyc
│   │   │   │   │   │   │   ias15.cpython-310.pyc
│   │   │   │   │   │   │   janus.cpython-310.pyc
│   │   │   │   │   │   │   mercurius.cpython-310.pyc
│   │   │   │   │   │   │   saba.cpython-310.pyc
│   │   │   │   │   │   │   sei.cpython-310.pyc
│   │   │   │   │   │   │   trace.cpython-310.pyc
│   │   │   │   │   │   │   whfast.cpython-310.pyc
│   │   │   │   │   │   │   whfast512.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   binary_field_descriptor.cpython-310.pyc
│   │   │   │   │   │   citations.cpython-310.pyc
│   │   │   │   │   │   data.cpython-310.pyc
│   │   │   │   │   │   hash.cpython-310.pyc
│   │   │   │   │   │   horizons.cpython-310.pyc
│   │   │   │   │   │   orbit.cpython-310.pyc
│   │   │   │   │   │   particle.cpython-310.pyc
│   │   │   │   │   │   particles.cpython-310.pyc
│   │   │   │   │   │   plotting.cpython-310.pyc
│   │   │   │   │   │   rotation.cpython-310.pyc
│   │   │   │   │   │   simulation.cpython-310.pyc
│   │   │   │   │   │   simulationarchive.cpython-310.pyc
│   │   │   │   │   │   tools.cpython-310.pyc
│   │   │   │   │   │   units.cpython-310.pyc
│   │   │   │   │   │   variation.cpython-310.pyc
│   │   │   │   │   │   vectors.cpython-310.pyc
│   │   │   │   │   │   widget.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── rebound-4.4.11.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── referencing/
│   │   │   │   │   exceptions.py
│   │   │   │   │   jsonschema.py
│   │   │   │   │   py.typed
│   │   │   │   │   retrieval.py
│   │   │   │   │   typing.py
│   │   │   │   │   _attrs.py
│   │   │   │   │   _attrs.pyi
│   │   │   │   │   _core.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── tests/
│   │   │   │   │   │   test_core.py
│   │   │   │   │   │   test_exceptions.py
│   │   │   │   │   │   test_jsonschema.py
│   │   │   │   │   │   test_referencing_suite.py
│   │   │   │   │   │   test_retrieval.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   test_core.cpython-310.pyc
│   │   │   │   │   │   │   test_exceptions.cpython-310.pyc
│   │   │   │   │   │   │   test_jsonschema.cpython-310.pyc
│   │   │   │   │   │   │   test_referencing_suite.cpython-310.pyc
│   │   │   │   │   │   │   test_retrieval.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   jsonschema.cpython-310.pyc
│   │   │   │   │   │   retrieval.cpython-310.pyc
│   │   │   │   │   │   typing.cpython-310.pyc
│   │   │   │   │   │   _attrs.cpython-310.pyc
│   │   │   │   │   │   _core.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── referencing-0.37.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   COPYING
│   │   │   │   ├── requests/
│   │   │   │   │   adapters.py
│   │   │   │   │   api.py
│   │   │   │   │   auth.py
│   │   │   │   │   certs.py
│   │   │   │   │   compat.py
│   │   │   │   │   cookies.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   help.py
│   │   │   │   │   hooks.py
│   │   │   │   │   models.py
│   │   │   │   │   packages.py
│   │   │   │   │   sessions.py
│   │   │   │   │   status_codes.py
│   │   │   │   │   structures.py
│   │   │   │   │   utils.py
│   │   │   │   │   _internal_utils.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __version__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   adapters.cpython-310.pyc
│   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   auth.cpython-310.pyc
│   │   │   │   │   │   certs.cpython-310.pyc
│   │   │   │   │   │   compat.cpython-310.pyc
│   │   │   │   │   │   cookies.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   help.cpython-310.pyc
│   │   │   │   │   │   hooks.cpython-310.pyc
│   │   │   │   │   │   models.cpython-310.pyc
│   │   │   │   │   │   packages.cpython-310.pyc
│   │   │   │   │   │   sessions.cpython-310.pyc
│   │   │   │   │   │   status_codes.cpython-310.pyc
│   │   │   │   │   │   structures.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   _internal_utils.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __version__.cpython-310.pyc
│   │   │   │   ├── requests-2.32.5.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── rpds/
│   │   │   │   │   py.typed
│   │   │   │   │   rpds.cp310-win_amd64.pyd
│   │   │   │   │   __init__.py
│   │   │   │   │   __init__.pyi
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── rpds_py-0.28.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── scipy/
│   │   │   │   │   conftest.py
│   │   │   │   │   version.py
│   │   │   │   │   _distributor_init.py
│   │   │   │   │   __config__.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── cluster/
│   │   │   │   │   │   hierarchy.py
│   │   │   │   │   │   vq.py
│   │   │   │   │   │   _hierarchy.cp310-win_amd64.dll.a
│   │   │   │   │   │   _hierarchy.cp310-win_amd64.pyd
│   │   │   │   │   │   _optimal_leaf_ordering.cp310-win_amd64.dll.a
│   │   │   │   │   │   _optimal_leaf_ordering.cp310-win_amd64.pyd
│   │   │   │   │   │   _vq.cp310-win_amd64.dll.a
│   │   │   │   │   │   _vq.cp310-win_amd64.pyd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   hierarchy_test_data.py
│   │   │   │   │   │   │   test_disjoint_set.py
│   │   │   │   │   │   │   test_hierarchy.py
│   │   │   │   │   │   │   test_vq.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   hierarchy_test_data.cpython-310.pyc
│   │   │   │   │   │   │   │   test_disjoint_set.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hierarchy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_vq.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   hierarchy.cpython-310.pyc
│   │   │   │   │   │   │   vq.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── constants/
│   │   │   │   │   │   codata.py
│   │   │   │   │   │   constants.py
│   │   │   │   │   │   _codata.py
│   │   │   │   │   │   _constants.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_codata.py
│   │   │   │   │   │   │   test_constants.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_codata.cpython-310.pyc
│   │   │   │   │   │   │   │   test_constants.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   codata.cpython-310.pyc
│   │   │   │   │   │   │   constants.cpython-310.pyc
│   │   │   │   │   │   │   _codata.cpython-310.pyc
│   │   │   │   │   │   │   _constants.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── datasets/
│   │   │   │   │   │   _download_all.py
│   │   │   │   │   │   _fetchers.py
│   │   │   │   │   │   _registry.py
│   │   │   │   │   │   _utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_data.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_data.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _download_all.cpython-310.pyc
│   │   │   │   │   │   │   _fetchers.cpython-310.pyc
│   │   │   │   │   │   │   _registry.cpython-310.pyc
│   │   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── differentiate/
│   │   │   │   │   │   _differentiate.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_differentiate.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_differentiate.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _differentiate.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── fft/
│   │   │   │   │   │   _backend.py
│   │   │   │   │   │   _basic.py
│   │   │   │   │   │   _basic_backend.py
│   │   │   │   │   │   _debug_backends.py
│   │   │   │   │   │   _fftlog.py
│   │   │   │   │   │   _fftlog_backend.py
│   │   │   │   │   │   _helper.py
│   │   │   │   │   │   _realtransforms.py
│   │   │   │   │   │   _realtransforms_backend.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   mock_backend.py
│   │   │   │   │   │   │   test_backend.py
│   │   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   │   test_fftlog.py
│   │   │   │   │   │   │   test_helper.py
│   │   │   │   │   │   │   test_multithreading.py
│   │   │   │   │   │   │   test_real_transforms.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   mock_backend.cpython-310.pyc
│   │   │   │   │   │   │   │   test_backend.cpython-310.pyc
│   │   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fftlog.cpython-310.pyc
│   │   │   │   │   │   │   │   test_helper.cpython-310.pyc
│   │   │   │   │   │   │   │   test_multithreading.cpython-310.pyc
│   │   │   │   │   │   │   │   test_real_transforms.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _pocketfft/
│   │   │   │   │   │   │   basic.py
│   │   │   │   │   │   │   helper.py
│   │   │   │   │   │   │   LICENSE.md
│   │   │   │   │   │   │   pypocketfft.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   pypocketfft.cp310-win_amd64.pyd
│   │   │   │   │   │   │   realtransforms.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   │   │   test_real_transforms.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_real_transforms.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   basic.cpython-310.pyc
│   │   │   │   │   │   │   │   helper.cpython-310.pyc
│   │   │   │   │   │   │   │   realtransforms.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   _backend.cpython-310.pyc
│   │   │   │   │   │   │   _basic.cpython-310.pyc
│   │   │   │   │   │   │   _basic_backend.cpython-310.pyc
│   │   │   │   │   │   │   _debug_backends.cpython-310.pyc
│   │   │   │   │   │   │   _fftlog.cpython-310.pyc
│   │   │   │   │   │   │   _fftlog_backend.cpython-310.pyc
│   │   │   │   │   │   │   _helper.cpython-310.pyc
│   │   │   │   │   │   │   _realtransforms.cpython-310.pyc
│   │   │   │   │   │   │   _realtransforms_backend.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── fftpack/
│   │   │   │   │   │   basic.py
│   │   │   │   │   │   convolve.cp310-win_amd64.dll.a
│   │   │   │   │   │   convolve.cp310-win_amd64.pyd
│   │   │   │   │   │   helper.py
│   │   │   │   │   │   pseudo_diffs.py
│   │   │   │   │   │   realtransforms.py
│   │   │   │   │   │   _basic.py
│   │   │   │   │   │   _helper.py
│   │   │   │   │   │   _pseudo_diffs.py
│   │   │   │   │   │   _realtransforms.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   fftw_double_ref.npz
│   │   │   │   │   │   │   fftw_longdouble_ref.npz
│   │   │   │   │   │   │   fftw_single_ref.npz
│   │   │   │   │   │   │   test.npz
│   │   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   │   test_helper.py
│   │   │   │   │   │   │   test_import.py
│   │   │   │   │   │   │   test_pseudo_diffs.py
│   │   │   │   │   │   │   test_real_transforms.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_helper.cpython-310.pyc
│   │   │   │   │   │   │   │   test_import.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pseudo_diffs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_real_transforms.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   basic.cpython-310.pyc
│   │   │   │   │   │   │   helper.cpython-310.pyc
│   │   │   │   │   │   │   pseudo_diffs.cpython-310.pyc
│   │   │   │   │   │   │   realtransforms.cpython-310.pyc
│   │   │   │   │   │   │   _basic.cpython-310.pyc
│   │   │   │   │   │   │   _helper.cpython-310.pyc
│   │   │   │   │   │   │   _pseudo_diffs.cpython-310.pyc
│   │   │   │   │   │   │   _realtransforms.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── integrate/
│   │   │   │   │   │   dop.py
│   │   │   │   │   │   lsoda.py
│   │   │   │   │   │   odepack.py
│   │   │   │   │   │   quadpack.py
│   │   │   │   │   │   vode.py
│   │   │   │   │   │   _bvp.py
│   │   │   │   │   │   _cubature.py
│   │   │   │   │   │   _dop.cp310-win_amd64.dll.a
│   │   │   │   │   │   _dop.cp310-win_amd64.pyd
│   │   │   │   │   │   _lebedev.py
│   │   │   │   │   │   _lsoda.cp310-win_amd64.dll.a
│   │   │   │   │   │   _lsoda.cp310-win_amd64.pyd
│   │   │   │   │   │   _ode.py
│   │   │   │   │   │   _odepack.cp310-win_amd64.dll.a
│   │   │   │   │   │   _odepack.cp310-win_amd64.pyd
│   │   │   │   │   │   _odepack_py.py
│   │   │   │   │   │   _quadpack.cp310-win_amd64.dll.a
│   │   │   │   │   │   _quadpack.cp310-win_amd64.pyd
│   │   │   │   │   │   _quadpack_py.py
│   │   │   │   │   │   _quadrature.py
│   │   │   │   │   │   _quad_vec.py
│   │   │   │   │   │   _tanhsinh.py
│   │   │   │   │   │   _test_multivariate.cp310-win_amd64.dll.a
│   │   │   │   │   │   _test_multivariate.cp310-win_amd64.pyd
│   │   │   │   │   │   _test_odeint_banded.cp310-win_amd64.dll.a
│   │   │   │   │   │   _test_odeint_banded.cp310-win_amd64.pyd
│   │   │   │   │   │   _vode.cp310-win_amd64.dll.a
│   │   │   │   │   │   _vode.cp310-win_amd64.pyd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_banded_ode_solvers.py
│   │   │   │   │   │   │   test_bvp.py
│   │   │   │   │   │   │   test_cubature.py
│   │   │   │   │   │   │   test_integrate.py
│   │   │   │   │   │   │   test_odeint_jac.py
│   │   │   │   │   │   │   test_quadpack.py
│   │   │   │   │   │   │   test_quadrature.py
│   │   │   │   │   │   │   test_tanhsinh.py
│   │   │   │   │   │   │   test__quad_vec.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_banded_ode_solvers.cpython-310.pyc
│   │   │   │   │   │   │   │   test_bvp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cubature.cpython-310.pyc
│   │   │   │   │   │   │   │   test_integrate.cpython-310.pyc
│   │   │   │   │   │   │   │   test_odeint_jac.cpython-310.pyc
│   │   │   │   │   │   │   │   test_quadpack.cpython-310.pyc
│   │   │   │   │   │   │   │   test_quadrature.cpython-310.pyc
│   │   │   │   │   │   │   │   test_tanhsinh.cpython-310.pyc
│   │   │   │   │   │   │   │   test__quad_vec.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _ivp/
│   │   │   │   │   │   │   base.py
│   │   │   │   │   │   │   bdf.py
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   dop853_coefficients.py
│   │   │   │   │   │   │   ivp.py
│   │   │   │   │   │   │   lsoda.py
│   │   │   │   │   │   │   radau.py
│   │   │   │   │   │   │   rk.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_ivp.py
│   │   │   │   │   │   │   │   test_rk.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_ivp.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rk.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   │   bdf.cpython-310.pyc
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   dop853_coefficients.cpython-310.pyc
│   │   │   │   │   │   │   │   ivp.cpython-310.pyc
│   │   │   │   │   │   │   │   lsoda.cpython-310.pyc
│   │   │   │   │   │   │   │   radau.cpython-310.pyc
│   │   │   │   │   │   │   │   rk.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _rules/
│   │   │   │   │   │   │   _base.py
│   │   │   │   │   │   │   _gauss_kronrod.py
│   │   │   │   │   │   │   _gauss_legendre.py
│   │   │   │   │   │   │   _genz_malik.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _base.cpython-310.pyc
│   │   │   │   │   │   │   │   _gauss_kronrod.cpython-310.pyc
│   │   │   │   │   │   │   │   _gauss_legendre.cpython-310.pyc
│   │   │   │   │   │   │   │   _genz_malik.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dop.cpython-310.pyc
│   │   │   │   │   │   │   lsoda.cpython-310.pyc
│   │   │   │   │   │   │   odepack.cpython-310.pyc
│   │   │   │   │   │   │   quadpack.cpython-310.pyc
│   │   │   │   │   │   │   vode.cpython-310.pyc
│   │   │   │   │   │   │   _bvp.cpython-310.pyc
│   │   │   │   │   │   │   _cubature.cpython-310.pyc
│   │   │   │   │   │   │   _lebedev.cpython-310.pyc
│   │   │   │   │   │   │   _ode.cpython-310.pyc
│   │   │   │   │   │   │   _odepack_py.cpython-310.pyc
│   │   │   │   │   │   │   _quadpack_py.cpython-310.pyc
│   │   │   │   │   │   │   _quadrature.cpython-310.pyc
│   │   │   │   │   │   │   _quad_vec.cpython-310.pyc
│   │   │   │   │   │   │   _tanhsinh.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── interpolate/
│   │   │   │   │   │   dfitpack.py
│   │   │   │   │   │   fitpack.py
│   │   │   │   │   │   fitpack2.py
│   │   │   │   │   │   interpnd.py
│   │   │   │   │   │   interpolate.py
│   │   │   │   │   │   ndgriddata.py
│   │   │   │   │   │   polyint.py
│   │   │   │   │   │   rbf.py
│   │   │   │   │   │   _bary_rational.py
│   │   │   │   │   │   _bspl.cp310-win_amd64.dll.a
│   │   │   │   │   │   _bspl.cp310-win_amd64.pyd
│   │   │   │   │   │   _bsplines.py
│   │   │   │   │   │   _cubic.py
│   │   │   │   │   │   _dfitpack.cp310-win_amd64.dll.a
│   │   │   │   │   │   _dfitpack.cp310-win_amd64.pyd
│   │   │   │   │   │   _dierckx.cp310-win_amd64.dll.a
│   │   │   │   │   │   _dierckx.cp310-win_amd64.pyd
│   │   │   │   │   │   _fitpack.cp310-win_amd64.dll.a
│   │   │   │   │   │   _fitpack.cp310-win_amd64.pyd
│   │   │   │   │   │   _fitpack2.py
│   │   │   │   │   │   _fitpack_impl.py
│   │   │   │   │   │   _fitpack_py.py
│   │   │   │   │   │   _fitpack_repro.py
│   │   │   │   │   │   _interpnd.cp310-win_amd64.dll.a
│   │   │   │   │   │   _interpnd.cp310-win_amd64.pyd
│   │   │   │   │   │   _interpolate.py
│   │   │   │   │   │   _ndbspline.py
│   │   │   │   │   │   _ndgriddata.py
│   │   │   │   │   │   _pade.py
│   │   │   │   │   │   _polyint.py
│   │   │   │   │   │   _ppoly.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ppoly.cp310-win_amd64.pyd
│   │   │   │   │   │   _rbf.py
│   │   │   │   │   │   _rbfinterp.py
│   │   │   │   │   │   _rbfinterp_pythran.cp310-win_amd64.dll.a
│   │   │   │   │   │   _rbfinterp_pythran.cp310-win_amd64.pyd
│   │   │   │   │   │   _rgi.py
│   │   │   │   │   │   _rgi_cython.cp310-win_amd64.dll.a
│   │   │   │   │   │   _rgi_cython.cp310-win_amd64.pyd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_bary_rational.py
│   │   │   │   │   │   │   test_bsplines.py
│   │   │   │   │   │   │   test_fitpack.py
│   │   │   │   │   │   │   test_fitpack2.py
│   │   │   │   │   │   │   test_gil.py
│   │   │   │   │   │   │   test_interpnd.py
│   │   │   │   │   │   │   test_interpolate.py
│   │   │   │   │   │   │   test_ndgriddata.py
│   │   │   │   │   │   │   test_pade.py
│   │   │   │   │   │   │   test_polyint.py
│   │   │   │   │   │   │   test_rbf.py
│   │   │   │   │   │   │   test_rbfinterp.py
│   │   │   │   │   │   │   test_rgi.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   bug-1310.npz
│   │   │   │   │   │   │   │   estimate_gradients_hang.npy
│   │   │   │   │   │   │   │   gcvspl.npz
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_bary_rational.cpython-310.pyc
│   │   │   │   │   │   │   │   test_bsplines.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fitpack.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fitpack2.cpython-310.pyc
│   │   │   │   │   │   │   │   test_gil.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interpnd.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interpolate.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ndgriddata.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pade.cpython-310.pyc
│   │   │   │   │   │   │   │   test_polyint.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rbf.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rbfinterp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rgi.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   dfitpack.cpython-310.pyc
│   │   │   │   │   │   │   fitpack.cpython-310.pyc
│   │   │   │   │   │   │   fitpack2.cpython-310.pyc
│   │   │   │   │   │   │   interpnd.cpython-310.pyc
│   │   │   │   │   │   │   interpolate.cpython-310.pyc
│   │   │   │   │   │   │   ndgriddata.cpython-310.pyc
│   │   │   │   │   │   │   polyint.cpython-310.pyc
│   │   │   │   │   │   │   rbf.cpython-310.pyc
│   │   │   │   │   │   │   _bary_rational.cpython-310.pyc
│   │   │   │   │   │   │   _bsplines.cpython-310.pyc
│   │   │   │   │   │   │   _cubic.cpython-310.pyc
│   │   │   │   │   │   │   _fitpack2.cpython-310.pyc
│   │   │   │   │   │   │   _fitpack_impl.cpython-310.pyc
│   │   │   │   │   │   │   _fitpack_py.cpython-310.pyc
│   │   │   │   │   │   │   _fitpack_repro.cpython-310.pyc
│   │   │   │   │   │   │   _interpolate.cpython-310.pyc
│   │   │   │   │   │   │   _ndbspline.cpython-310.pyc
│   │   │   │   │   │   │   _ndgriddata.cpython-310.pyc
│   │   │   │   │   │   │   _pade.cpython-310.pyc
│   │   │   │   │   │   │   _polyint.cpython-310.pyc
│   │   │   │   │   │   │   _rbf.cpython-310.pyc
│   │   │   │   │   │   │   _rbfinterp.cpython-310.pyc
│   │   │   │   │   │   │   _rgi.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── io/
│   │   │   │   │   │   harwell_boeing.py
│   │   │   │   │   │   idl.py
│   │   │   │   │   │   mmio.py
│   │   │   │   │   │   netcdf.py
│   │   │   │   │   │   wavfile.py
│   │   │   │   │   │   _fortran.py
│   │   │   │   │   │   _idl.py
│   │   │   │   │   │   _mmio.py
│   │   │   │   │   │   _netcdf.py
│   │   │   │   │   │   _test_fortran.cp310-win_amd64.dll.a
│   │   │   │   │   │   _test_fortran.cp310-win_amd64.pyd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── arff/
│   │   │   │   │   │   │   arffread.py
│   │   │   │   │   │   │   _arffread.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_arffread.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   │   iris.arff
│   │   │   │   │   │   │   │   │   missing.arff
│   │   │   │   │   │   │   │   │   nodata.arff
│   │   │   │   │   │   │   │   │   quoted_nominal.arff
│   │   │   │   │   │   │   │   │   quoted_nominal_spaces.arff
│   │   │   │   │   │   │   │   │   test1.arff
│   │   │   │   │   │   │   │   │   test10.arff
│   │   │   │   │   │   │   │   │   test11.arff
│   │   │   │   │   │   │   │   │   test2.arff
│   │   │   │   │   │   │   │   │   test3.arff
│   │   │   │   │   │   │   │   │   test4.arff
│   │   │   │   │   │   │   │   │   test5.arff
│   │   │   │   │   │   │   │   │   test6.arff
│   │   │   │   │   │   │   │   │   test7.arff
│   │   │   │   │   │   │   │   │   test8.arff
│   │   │   │   │   │   │   │   │   test9.arff
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_arffread.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   arffread.cpython-310.pyc
│   │   │   │   │   │   │   │   _arffread.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── matlab/
│   │   │   │   │   │   │   byteordercodes.py
│   │   │   │   │   │   │   mio.py
│   │   │   │   │   │   │   mio4.py
│   │   │   │   │   │   │   mio5.py
│   │   │   │   │   │   │   mio5_params.py
│   │   │   │   │   │   │   mio5_utils.py
│   │   │   │   │   │   │   miobase.py
│   │   │   │   │   │   │   mio_utils.py
│   │   │   │   │   │   │   streams.py
│   │   │   │   │   │   │   _byteordercodes.py
│   │   │   │   │   │   │   _mio.py
│   │   │   │   │   │   │   _mio4.py
│   │   │   │   │   │   │   _mio5.py
│   │   │   │   │   │   │   _mio5_params.py
│   │   │   │   │   │   │   _mio5_utils.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _mio5_utils.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _miobase.py
│   │   │   │   │   │   │   _mio_utils.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _mio_utils.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _streams.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _streams.cp310-win_amd64.pyd
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_byteordercodes.py
│   │   │   │   │   │   │   │   test_mio.py
│   │   │   │   │   │   │   │   test_mio5_utils.py
│   │   │   │   │   │   │   │   test_miobase.py
│   │   │   │   │   │   │   │   test_mio_funcs.py
│   │   │   │   │   │   │   │   test_mio_utils.py
│   │   │   │   │   │   │   │   test_pathological.py
│   │   │   │   │   │   │   │   test_streams.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   │   bad_miuint32.mat
│   │   │   │   │   │   │   │   │   bad_miutf8_array_name.mat
│   │   │   │   │   │   │   │   │   big_endian.mat
│   │   │   │   │   │   │   │   │   broken_utf8.mat
│   │   │   │   │   │   │   │   │   corrupted_zlib_checksum.mat
│   │   │   │   │   │   │   │   │   corrupted_zlib_data.mat
│   │   │   │   │   │   │   │   │   debigged_m4.mat
│   │   │   │   │   │   │   │   │   japanese_utf8.txt
│   │   │   │   │   │   │   │   │   little_endian.mat
│   │   │   │   │   │   │   │   │   logical_sparse.mat
│   │   │   │   │   │   │   │   │   malformed1.mat
│   │   │   │   │   │   │   │   │   miuint32_for_miint32.mat
│   │   │   │   │   │   │   │   │   miutf8_array_name.mat
│   │   │   │   │   │   │   │   │   nasty_duplicate_fieldnames.mat
│   │   │   │   │   │   │   │   │   one_by_zero_char.mat
│   │   │   │   │   │   │   │   │   parabola.mat
│   │   │   │   │   │   │   │   │   single_empty_string.mat
│   │   │   │   │   │   │   │   │   some_functions.mat
│   │   │   │   │   │   │   │   │   sqr.mat
│   │   │   │   │   │   │   │   │   test3dmatrix_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   test3dmatrix_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   test3dmatrix_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   test3dmatrix_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testbool_8_WIN64.mat
│   │   │   │   │   │   │   │   │   testcellnest_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testcellnest_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcellnest_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcellnest_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcell_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testcell_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcell_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcell_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcomplex_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testcomplex_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testcomplex_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcomplex_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testcomplex_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testdouble_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testdouble_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testdouble_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testdouble_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testdouble_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testemptycell_5.3_SOL2.mat
│   │   │   │   │   │   │   │   │   testemptycell_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testemptycell_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testemptycell_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testfunc_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testhdf5_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testmatrix_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testmatrix_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testmatrix_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testmatrix_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testmatrix_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testminus_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testminus_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testminus_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testminus_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testminus_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testmulti_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testmulti_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testmulti_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testobject_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testobject_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testobject_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testobject_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testonechar_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testonechar_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testonechar_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testonechar_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testonechar_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testscalarcell_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testsimplecell.mat
│   │   │   │   │   │   │   │   │   testsparsecomplex_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testsparsecomplex_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testsparsecomplex_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testsparsecomplex_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testsparsecomplex_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testsparsefloat_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testsparse_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   testsparse_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   testsparse_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testsparse_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testsparse_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststringarray_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   teststringarray_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   teststringarray_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststringarray_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststringarray_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststring_4.2c_SOL2.mat
│   │   │   │   │   │   │   │   │   teststring_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   teststring_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststring_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststring_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststructarr_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   teststructarr_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststructarr_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststructarr_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststructnest_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   teststructnest_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststructnest_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststructnest_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststruct_6.1_SOL2.mat
│   │   │   │   │   │   │   │   │   teststruct_6.5.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststruct_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   teststruct_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testunicode_7.1_GLNX86.mat
│   │   │   │   │   │   │   │   │   testunicode_7.4_GLNX86.mat
│   │   │   │   │   │   │   │   │   testvec_4_GLNX86.mat
│   │   │   │   │   │   │   │   │   test_empty_struct.mat
│   │   │   │   │   │   │   │   │   test_mat4_le_floats.mat
│   │   │   │   │   │   │   │   │   test_skip_variable.mat
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_byteordercodes.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_mio.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_mio5_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_miobase.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_mio_funcs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_mio_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pathological.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_streams.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   byteordercodes.cpython-310.pyc
│   │   │   │   │   │   │   │   mio.cpython-310.pyc
│   │   │   │   │   │   │   │   mio4.cpython-310.pyc
│   │   │   │   │   │   │   │   mio5.cpython-310.pyc
│   │   │   │   │   │   │   │   mio5_params.cpython-310.pyc
│   │   │   │   │   │   │   │   mio5_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   miobase.cpython-310.pyc
│   │   │   │   │   │   │   │   mio_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   streams.cpython-310.pyc
│   │   │   │   │   │   │   │   _byteordercodes.cpython-310.pyc
│   │   │   │   │   │   │   │   _mio.cpython-310.pyc
│   │   │   │   │   │   │   │   _mio4.cpython-310.pyc
│   │   │   │   │   │   │   │   _mio5.cpython-310.pyc
│   │   │   │   │   │   │   │   _mio5_params.cpython-310.pyc
│   │   │   │   │   │   │   │   _miobase.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_fortran.py
│   │   │   │   │   │   │   test_idl.py
│   │   │   │   │   │   │   test_mmio.py
│   │   │   │   │   │   │   test_netcdf.py
│   │   │   │   │   │   │   test_paths.py
│   │   │   │   │   │   │   test_wavfile.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   array_float32_1d.sav
│   │   │   │   │   │   │   │   array_float32_2d.sav
│   │   │   │   │   │   │   │   array_float32_3d.sav
│   │   │   │   │   │   │   │   array_float32_4d.sav
│   │   │   │   │   │   │   │   array_float32_5d.sav
│   │   │   │   │   │   │   │   array_float32_6d.sav
│   │   │   │   │   │   │   │   array_float32_7d.sav
│   │   │   │   │   │   │   │   array_float32_8d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_1d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_2d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_3d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_4d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_5d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_6d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_7d.sav
│   │   │   │   │   │   │   │   array_float32_pointer_8d.sav
│   │   │   │   │   │   │   │   example_1.nc
│   │   │   │   │   │   │   │   example_2.nc
│   │   │   │   │   │   │   │   example_3_maskedvals.nc
│   │   │   │   │   │   │   │   fortran-3x3d-2i.dat
│   │   │   │   │   │   │   │   fortran-mixed.dat
│   │   │   │   │   │   │   │   fortran-sf8-11x1x10.dat
│   │   │   │   │   │   │   │   fortran-sf8-15x10x22.dat
│   │   │   │   │   │   │   │   fortran-sf8-1x1x1.dat
│   │   │   │   │   │   │   │   fortran-sf8-1x1x5.dat
│   │   │   │   │   │   │   │   fortran-sf8-1x1x7.dat
│   │   │   │   │   │   │   │   fortran-sf8-1x3x5.dat
│   │   │   │   │   │   │   │   fortran-si4-11x1x10.dat
│   │   │   │   │   │   │   │   fortran-si4-15x10x22.dat
│   │   │   │   │   │   │   │   fortran-si4-1x1x1.dat
│   │   │   │   │   │   │   │   fortran-si4-1x1x5.dat
│   │   │   │   │   │   │   │   fortran-si4-1x1x7.dat
│   │   │   │   │   │   │   │   fortran-si4-1x3x5.dat
│   │   │   │   │   │   │   │   invalid_pointer.sav
│   │   │   │   │   │   │   │   null_pointer.sav
│   │   │   │   │   │   │   │   scalar_byte.sav
│   │   │   │   │   │   │   │   scalar_byte_descr.sav
│   │   │   │   │   │   │   │   scalar_complex32.sav
│   │   │   │   │   │   │   │   scalar_complex64.sav
│   │   │   │   │   │   │   │   scalar_float32.sav
│   │   │   │   │   │   │   │   scalar_float64.sav
│   │   │   │   │   │   │   │   scalar_heap_pointer.sav
│   │   │   │   │   │   │   │   scalar_int16.sav
│   │   │   │   │   │   │   │   scalar_int32.sav
│   │   │   │   │   │   │   │   scalar_int64.sav
│   │   │   │   │   │   │   │   scalar_string.sav
│   │   │   │   │   │   │   │   scalar_uint16.sav
│   │   │   │   │   │   │   │   scalar_uint32.sav
│   │   │   │   │   │   │   │   scalar_uint64.sav
│   │   │   │   │   │   │   │   struct_arrays.sav
│   │   │   │   │   │   │   │   struct_arrays_byte_idl80.sav
│   │   │   │   │   │   │   │   struct_arrays_replicated.sav
│   │   │   │   │   │   │   │   struct_arrays_replicated_3d.sav
│   │   │   │   │   │   │   │   struct_inherit.sav
│   │   │   │   │   │   │   │   struct_pointers.sav
│   │   │   │   │   │   │   │   struct_pointers_replicated.sav
│   │   │   │   │   │   │   │   struct_pointers_replicated_3d.sav
│   │   │   │   │   │   │   │   struct_pointer_arrays.sav
│   │   │   │   │   │   │   │   struct_pointer_arrays_replicated.sav
│   │   │   │   │   │   │   │   struct_pointer_arrays_replicated_3d.sav
│   │   │   │   │   │   │   │   struct_scalars.sav
│   │   │   │   │   │   │   │   struct_scalars_replicated.sav
│   │   │   │   │   │   │   │   struct_scalars_replicated_3d.sav
│   │   │   │   │   │   │   │   test-1234Hz-le-1ch-10S-20bit-extra.wav
│   │   │   │   │   │   │   │   test-44100Hz-2ch-32bit-float-be.wav
│   │   │   │   │   │   │   │   test-44100Hz-2ch-32bit-float-le.wav
│   │   │   │   │   │   │   │   test-44100Hz-be-1ch-4bytes.wav
│   │   │   │   │   │   │   │   test-44100Hz-le-1ch-4bytes-early-eof-no-data.wav
│   │   │   │   │   │   │   │   test-44100Hz-le-1ch-4bytes-early-eof.wav
│   │   │   │   │   │   │   │   test-44100Hz-le-1ch-4bytes-incomplete-chunk.wav
│   │   │   │   │   │   │   │   test-44100Hz-le-1ch-4bytes-rf64.wav
│   │   │   │   │   │   │   │   test-44100Hz-le-1ch-4bytes.wav
│   │   │   │   │   │   │   │   test-48000Hz-2ch-64bit-float-le-wavex.wav
│   │   │   │   │   │   │   │   test-8000Hz-be-3ch-5S-24bit.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-1ch-1byte-ulaw.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-2ch-1byteu.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-3ch-5S-24bit-inconsistent.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-3ch-5S-24bit-rf64.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-3ch-5S-24bit.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-3ch-5S-36bit.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-3ch-5S-45bit.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-3ch-5S-53bit.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-3ch-5S-64bit.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-4ch-9S-12bit.wav
│   │   │   │   │   │   │   │   test-8000Hz-le-5ch-9S-5bit.wav
│   │   │   │   │   │   │   │   Transparent Busy.ani
│   │   │   │   │   │   │   │   various_compressed.sav
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_fortran.cpython-310.pyc
│   │   │   │   │   │   │   │   test_idl.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mmio.cpython-310.pyc
│   │   │   │   │   │   │   │   test_netcdf.cpython-310.pyc
│   │   │   │   │   │   │   │   test_paths.cpython-310.pyc
│   │   │   │   │   │   │   │   test_wavfile.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _fast_matrix_market/
│   │   │   │   │   │   │   _fmm_core.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _fmm_core.cp310-win_amd64.pyd
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _harwell_boeing/
│   │   │   │   │   │   │   hb.py
│   │   │   │   │   │   │   _fortran_format_parser.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_fortran_format.py
│   │   │   │   │   │   │   │   test_hb.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_fortran_format.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_hb.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   hb.cpython-310.pyc
│   │   │   │   │   │   │   │   _fortran_format_parser.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   harwell_boeing.cpython-310.pyc
│   │   │   │   │   │   │   idl.cpython-310.pyc
│   │   │   │   │   │   │   mmio.cpython-310.pyc
│   │   │   │   │   │   │   netcdf.cpython-310.pyc
│   │   │   │   │   │   │   wavfile.cpython-310.pyc
│   │   │   │   │   │   │   _fortran.cpython-310.pyc
│   │   │   │   │   │   │   _idl.cpython-310.pyc
│   │   │   │   │   │   │   _mmio.cpython-310.pyc
│   │   │   │   │   │   │   _netcdf.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── linalg/
│   │   │   │   │   │   basic.py
│   │   │   │   │   │   blas.py
│   │   │   │   │   │   cython_blas.cp310-win_amd64.dll.a
│   │   │   │   │   │   cython_blas.cp310-win_amd64.pyd
│   │   │   │   │   │   cython_blas.pxd
│   │   │   │   │   │   cython_blas.pyx
│   │   │   │   │   │   cython_lapack.cp310-win_amd64.dll.a
│   │   │   │   │   │   cython_lapack.cp310-win_amd64.pyd
│   │   │   │   │   │   cython_lapack.pxd
│   │   │   │   │   │   cython_lapack.pyx
│   │   │   │   │   │   decomp.py
│   │   │   │   │   │   decomp_cholesky.py
│   │   │   │   │   │   decomp_lu.py
│   │   │   │   │   │   decomp_qr.py
│   │   │   │   │   │   decomp_schur.py
│   │   │   │   │   │   decomp_svd.py
│   │   │   │   │   │   interpolative.py
│   │   │   │   │   │   lapack.py
│   │   │   │   │   │   matfuncs.py
│   │   │   │   │   │   misc.py
│   │   │   │   │   │   special_matrices.py
│   │   │   │   │   │   _basic.py
│   │   │   │   │   │   _blas_subroutines.h
│   │   │   │   │   │   _cythonized_array_utils.cp310-win_amd64.dll.a
│   │   │   │   │   │   _cythonized_array_utils.cp310-win_amd64.pyd
│   │   │   │   │   │   _cythonized_array_utils.pxd
│   │   │   │   │   │   _cythonized_array_utils.pyi
│   │   │   │   │   │   _decomp.py
│   │   │   │   │   │   _decomp_cholesky.py
│   │   │   │   │   │   _decomp_cossin.py
│   │   │   │   │   │   _decomp_interpolative.cp310-win_amd64.dll.a
│   │   │   │   │   │   _decomp_interpolative.cp310-win_amd64.pyd
│   │   │   │   │   │   _decomp_ldl.py
│   │   │   │   │   │   _decomp_lu.py
│   │   │   │   │   │   _decomp_lu_cython.cp310-win_amd64.dll.a
│   │   │   │   │   │   _decomp_lu_cython.cp310-win_amd64.pyd
│   │   │   │   │   │   _decomp_lu_cython.pyi
│   │   │   │   │   │   _decomp_polar.py
│   │   │   │   │   │   _decomp_qr.py
│   │   │   │   │   │   _decomp_qz.py
│   │   │   │   │   │   _decomp_schur.py
│   │   │   │   │   │   _decomp_svd.py
│   │   │   │   │   │   _decomp_update.cp310-win_amd64.dll.a
│   │   │   │   │   │   _decomp_update.cp310-win_amd64.pyd
│   │   │   │   │   │   _expm_frechet.py
│   │   │   │   │   │   _fblas.cp310-win_amd64.dll.a
│   │   │   │   │   │   _fblas.cp310-win_amd64.pyd
│   │   │   │   │   │   _flapack.cp310-win_amd64.dll.a
│   │   │   │   │   │   _flapack.cp310-win_amd64.pyd
│   │   │   │   │   │   _lapack_subroutines.h
│   │   │   │   │   │   _linalg_pythran.cp310-win_amd64.dll.a
│   │   │   │   │   │   _linalg_pythran.cp310-win_amd64.pyd
│   │   │   │   │   │   _matfuncs.py
│   │   │   │   │   │   _matfuncs_expm.cp310-win_amd64.dll.a
│   │   │   │   │   │   _matfuncs_expm.cp310-win_amd64.pyd
│   │   │   │   │   │   _matfuncs_expm.pyi
│   │   │   │   │   │   _matfuncs_inv_ssq.py
│   │   │   │   │   │   _matfuncs_sqrtm.py
│   │   │   │   │   │   _matfuncs_sqrtm_triu.cp310-win_amd64.dll.a
│   │   │   │   │   │   _matfuncs_sqrtm_triu.cp310-win_amd64.pyd
│   │   │   │   │   │   _misc.py
│   │   │   │   │   │   _procrustes.py
│   │   │   │   │   │   _sketches.py
│   │   │   │   │   │   _solvers.py
│   │   │   │   │   │   _solve_toeplitz.cp310-win_amd64.dll.a
│   │   │   │   │   │   _solve_toeplitz.cp310-win_amd64.pyd
│   │   │   │   │   │   _special_matrices.py
│   │   │   │   │   │   _testutils.py
│   │   │   │   │   │   __init__.pxd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   │   test_blas.py
│   │   │   │   │   │   │   test_cythonized_array_utils.py
│   │   │   │   │   │   │   test_cython_blas.py
│   │   │   │   │   │   │   test_cython_lapack.py
│   │   │   │   │   │   │   test_decomp.py
│   │   │   │   │   │   │   test_decomp_cholesky.py
│   │   │   │   │   │   │   test_decomp_cossin.py
│   │   │   │   │   │   │   test_decomp_ldl.py
│   │   │   │   │   │   │   test_decomp_lu.py
│   │   │   │   │   │   │   test_decomp_polar.py
│   │   │   │   │   │   │   test_decomp_update.py
│   │   │   │   │   │   │   test_extending.py
│   │   │   │   │   │   │   test_fblas.py
│   │   │   │   │   │   │   test_interpolative.py
│   │   │   │   │   │   │   test_lapack.py
│   │   │   │   │   │   │   test_matfuncs.py
│   │   │   │   │   │   │   test_matmul_toeplitz.py
│   │   │   │   │   │   │   test_procrustes.py
│   │   │   │   │   │   │   test_sketches.py
│   │   │   │   │   │   │   test_solvers.py
│   │   │   │   │   │   │   test_solve_toeplitz.py
│   │   │   │   │   │   │   test_special_matrices.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   carex_15_data.npz
│   │   │   │   │   │   │   │   carex_18_data.npz
│   │   │   │   │   │   │   │   carex_19_data.npz
│   │   │   │   │   │   │   │   carex_20_data.npz
│   │   │   │   │   │   │   │   carex_6_data.npz
│   │   │   │   │   │   │   │   gendare_20170120_data.npz
│   │   │   │   │   │   │   ├── _cython_examples/
│   │   │   │   │   │   │   │   extending.pyx
│   │   │   │   │   │   │   │   meson.build
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_blas.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cythonized_array_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cython_blas.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cython_lapack.cpython-310.pyc
│   │   │   │   │   │   │   │   test_decomp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_decomp_cholesky.cpython-310.pyc
│   │   │   │   │   │   │   │   test_decomp_cossin.cpython-310.pyc
│   │   │   │   │   │   │   │   test_decomp_ldl.cpython-310.pyc
│   │   │   │   │   │   │   │   test_decomp_lu.cpython-310.pyc
│   │   │   │   │   │   │   │   test_decomp_polar.cpython-310.pyc
│   │   │   │   │   │   │   │   test_decomp_update.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extending.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fblas.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interpolative.cpython-310.pyc
│   │   │   │   │   │   │   │   test_lapack.cpython-310.pyc
│   │   │   │   │   │   │   │   test_matfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_matmul_toeplitz.cpython-310.pyc
│   │   │   │   │   │   │   │   test_procrustes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sketches.cpython-310.pyc
│   │   │   │   │   │   │   │   test_solvers.cpython-310.pyc
│   │   │   │   │   │   │   │   test_solve_toeplitz.cpython-310.pyc
│   │   │   │   │   │   │   │   test_special_matrices.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   basic.cpython-310.pyc
│   │   │   │   │   │   │   blas.cpython-310.pyc
│   │   │   │   │   │   │   decomp.cpython-310.pyc
│   │   │   │   │   │   │   decomp_cholesky.cpython-310.pyc
│   │   │   │   │   │   │   decomp_lu.cpython-310.pyc
│   │   │   │   │   │   │   decomp_qr.cpython-310.pyc
│   │   │   │   │   │   │   decomp_schur.cpython-310.pyc
│   │   │   │   │   │   │   decomp_svd.cpython-310.pyc
│   │   │   │   │   │   │   interpolative.cpython-310.pyc
│   │   │   │   │   │   │   lapack.cpython-310.pyc
│   │   │   │   │   │   │   matfuncs.cpython-310.pyc
│   │   │   │   │   │   │   misc.cpython-310.pyc
│   │   │   │   │   │   │   special_matrices.cpython-310.pyc
│   │   │   │   │   │   │   _basic.cpython-310.pyc
│   │   │   │   │   │   │   _decomp.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_cholesky.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_cossin.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_ldl.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_lu.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_polar.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_qr.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_qz.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_schur.cpython-310.pyc
│   │   │   │   │   │   │   _decomp_svd.cpython-310.pyc
│   │   │   │   │   │   │   _expm_frechet.cpython-310.pyc
│   │   │   │   │   │   │   _matfuncs.cpython-310.pyc
│   │   │   │   │   │   │   _matfuncs_inv_ssq.cpython-310.pyc
│   │   │   │   │   │   │   _matfuncs_sqrtm.cpython-310.pyc
│   │   │   │   │   │   │   _misc.cpython-310.pyc
│   │   │   │   │   │   │   _procrustes.cpython-310.pyc
│   │   │   │   │   │   │   _sketches.cpython-310.pyc
│   │   │   │   │   │   │   _solvers.cpython-310.pyc
│   │   │   │   │   │   │   _special_matrices.cpython-310.pyc
│   │   │   │   │   │   │   _testutils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── misc/
│   │   │   │   │   │   common.py
│   │   │   │   │   │   doccer.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   doccer.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── ndimage/
│   │   │   │   │   │   filters.py
│   │   │   │   │   │   fourier.py
│   │   │   │   │   │   interpolation.py
│   │   │   │   │   │   measurements.py
│   │   │   │   │   │   morphology.py
│   │   │   │   │   │   _ctest.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ctest.cp310-win_amd64.pyd
│   │   │   │   │   │   _cytest.cp310-win_amd64.dll.a
│   │   │   │   │   │   _cytest.cp310-win_amd64.pyd
│   │   │   │   │   │   _delegators.py
│   │   │   │   │   │   _filters.py
│   │   │   │   │   │   _fourier.py
│   │   │   │   │   │   _interpolation.py
│   │   │   │   │   │   _measurements.py
│   │   │   │   │   │   _morphology.py
│   │   │   │   │   │   _ndimage_api.py
│   │   │   │   │   │   _nd_image.cp310-win_amd64.dll.a
│   │   │   │   │   │   _nd_image.cp310-win_amd64.pyd
│   │   │   │   │   │   _ni_docstrings.py
│   │   │   │   │   │   _ni_label.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ni_label.cp310-win_amd64.pyd
│   │   │   │   │   │   _ni_support.py
│   │   │   │   │   │   _rank_filter_1d.cp310-win_amd64.dll.a
│   │   │   │   │   │   _rank_filter_1d.cp310-win_amd64.pyd
│   │   │   │   │   │   _support_alternative_backends.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   dots.png
│   │   │   │   │   │   │   test_c_api.py
│   │   │   │   │   │   │   test_datatypes.py
│   │   │   │   │   │   │   test_filters.py
│   │   │   │   │   │   │   test_fourier.py
│   │   │   │   │   │   │   test_interpolation.py
│   │   │   │   │   │   │   test_measurements.py
│   │   │   │   │   │   │   test_morphology.py
│   │   │   │   │   │   │   test_ni_support.py
│   │   │   │   │   │   │   test_splines.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   label_inputs.txt
│   │   │   │   │   │   │   │   label_results.txt
│   │   │   │   │   │   │   │   label_strels.txt
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_c_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_datatypes.cpython-310.pyc
│   │   │   │   │   │   │   │   test_filters.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fourier.cpython-310.pyc
│   │   │   │   │   │   │   │   test_interpolation.cpython-310.pyc
│   │   │   │   │   │   │   │   test_measurements.cpython-310.pyc
│   │   │   │   │   │   │   │   test_morphology.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ni_support.cpython-310.pyc
│   │   │   │   │   │   │   │   test_splines.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   filters.cpython-310.pyc
│   │   │   │   │   │   │   fourier.cpython-310.pyc
│   │   │   │   │   │   │   interpolation.cpython-310.pyc
│   │   │   │   │   │   │   measurements.cpython-310.pyc
│   │   │   │   │   │   │   morphology.cpython-310.pyc
│   │   │   │   │   │   │   _delegators.cpython-310.pyc
│   │   │   │   │   │   │   _filters.cpython-310.pyc
│   │   │   │   │   │   │   _fourier.cpython-310.pyc
│   │   │   │   │   │   │   _interpolation.cpython-310.pyc
│   │   │   │   │   │   │   _measurements.cpython-310.pyc
│   │   │   │   │   │   │   _morphology.cpython-310.pyc
│   │   │   │   │   │   │   _ndimage_api.cpython-310.pyc
│   │   │   │   │   │   │   _ni_docstrings.cpython-310.pyc
│   │   │   │   │   │   │   _ni_support.cpython-310.pyc
│   │   │   │   │   │   │   _support_alternative_backends.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── odr/
│   │   │   │   │   │   models.py
│   │   │   │   │   │   odrpack.py
│   │   │   │   │   │   _add_newdocs.py
│   │   │   │   │   │   _models.py
│   │   │   │   │   │   _odrpack.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __odrpack.cp310-win_amd64.dll.a
│   │   │   │   │   │   __odrpack.cp310-win_amd64.pyd
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_odr.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_odr.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   models.cpython-310.pyc
│   │   │   │   │   │   │   odrpack.cpython-310.pyc
│   │   │   │   │   │   │   _add_newdocs.cpython-310.pyc
│   │   │   │   │   │   │   _models.cpython-310.pyc
│   │   │   │   │   │   │   _odrpack.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── optimize/
│   │   │   │   │   │   cobyla.py
│   │   │   │   │   │   cython_optimize.pxd
│   │   │   │   │   │   elementwise.py
│   │   │   │   │   │   lbfgsb.py
│   │   │   │   │   │   linesearch.py
│   │   │   │   │   │   minpack.py
│   │   │   │   │   │   minpack2.py
│   │   │   │   │   │   moduleTNC.py
│   │   │   │   │   │   nonlin.py
│   │   │   │   │   │   optimize.py
│   │   │   │   │   │   slsqp.py
│   │   │   │   │   │   tnc.py
│   │   │   │   │   │   zeros.py
│   │   │   │   │   │   _basinhopping.py
│   │   │   │   │   │   _bglu_dense.cp310-win_amd64.dll.a
│   │   │   │   │   │   _bglu_dense.cp310-win_amd64.pyd
│   │   │   │   │   │   _bracket.py
│   │   │   │   │   │   _chandrupatla.py
│   │   │   │   │   │   _cobyla.cp310-win_amd64.dll.a
│   │   │   │   │   │   _cobyla.cp310-win_amd64.pyd
│   │   │   │   │   │   _cobyla_py.py
│   │   │   │   │   │   _cobyqa_py.py
│   │   │   │   │   │   _constraints.py
│   │   │   │   │   │   _cython_nnls.cp310-win_amd64.dll.a
│   │   │   │   │   │   _cython_nnls.cp310-win_amd64.pyd
│   │   │   │   │   │   _dcsrch.py
│   │   │   │   │   │   _differentiable_functions.py
│   │   │   │   │   │   _differentialevolution.py
│   │   │   │   │   │   _direct.cp310-win_amd64.dll.a
│   │   │   │   │   │   _direct.cp310-win_amd64.pyd
│   │   │   │   │   │   _direct_py.py
│   │   │   │   │   │   _dual_annealing.py
│   │   │   │   │   │   _elementwise.py
│   │   │   │   │   │   _group_columns.cp310-win_amd64.dll.a
│   │   │   │   │   │   _group_columns.cp310-win_amd64.pyd
│   │   │   │   │   │   _hessian_update_strategy.py
│   │   │   │   │   │   _isotonic.py
│   │   │   │   │   │   _lbfgsb.cp310-win_amd64.dll.a
│   │   │   │   │   │   _lbfgsb.cp310-win_amd64.pyd
│   │   │   │   │   │   _lbfgsb_py.py
│   │   │   │   │   │   _linesearch.py
│   │   │   │   │   │   _linprog.py
│   │   │   │   │   │   _linprog_doc.py
│   │   │   │   │   │   _linprog_highs.py
│   │   │   │   │   │   _linprog_ip.py
│   │   │   │   │   │   _linprog_rs.py
│   │   │   │   │   │   _linprog_simplex.py
│   │   │   │   │   │   _linprog_util.py
│   │   │   │   │   │   _lsap.cp310-win_amd64.dll.a
│   │   │   │   │   │   _lsap.cp310-win_amd64.pyd
│   │   │   │   │   │   _milp.py
│   │   │   │   │   │   _minimize.py
│   │   │   │   │   │   _minpack.cp310-win_amd64.dll.a
│   │   │   │   │   │   _minpack.cp310-win_amd64.pyd
│   │   │   │   │   │   _minpack_py.py
│   │   │   │   │   │   _moduleTNC.cp310-win_amd64.dll.a
│   │   │   │   │   │   _moduleTNC.cp310-win_amd64.pyd
│   │   │   │   │   │   _nnls.py
│   │   │   │   │   │   _nonlin.py
│   │   │   │   │   │   _numdiff.py
│   │   │   │   │   │   _optimize.py
│   │   │   │   │   │   _pava_pybind.cp310-win_amd64.dll.a
│   │   │   │   │   │   _pava_pybind.cp310-win_amd64.pyd
│   │   │   │   │   │   _qap.py
│   │   │   │   │   │   _remove_redundancy.py
│   │   │   │   │   │   _root.py
│   │   │   │   │   │   _root_scalar.py
│   │   │   │   │   │   _shgo.py
│   │   │   │   │   │   _slsqp.cp310-win_amd64.dll.a
│   │   │   │   │   │   _slsqp.cp310-win_amd64.pyd
│   │   │   │   │   │   _slsqp_py.py
│   │   │   │   │   │   _spectral.py
│   │   │   │   │   │   _tnc.py
│   │   │   │   │   │   _trustregion.py
│   │   │   │   │   │   _trustregion_dogleg.py
│   │   │   │   │   │   _trustregion_exact.py
│   │   │   │   │   │   _trustregion_krylov.py
│   │   │   │   │   │   _trustregion_ncg.py
│   │   │   │   │   │   _tstutils.py
│   │   │   │   │   │   _zeros.cp310-win_amd64.dll.a
│   │   │   │   │   │   _zeros.cp310-win_amd64.pyd
│   │   │   │   │   │   _zeros_py.py
│   │   │   │   │   │   __init__.pxd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── cython_optimize/
│   │   │   │   │   │   │   c_zeros.pxd
│   │   │   │   │   │   │   _zeros.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _zeros.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _zeros.pxd
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_bracket.py
│   │   │   │   │   │   │   test_chandrupatla.py
│   │   │   │   │   │   │   test_cobyla.py
│   │   │   │   │   │   │   test_cobyqa.py
│   │   │   │   │   │   │   test_constraints.py
│   │   │   │   │   │   │   test_constraint_conversion.py
│   │   │   │   │   │   │   test_cython_optimize.py
│   │   │   │   │   │   │   test_differentiable_functions.py
│   │   │   │   │   │   │   test_direct.py
│   │   │   │   │   │   │   test_extending.py
│   │   │   │   │   │   │   test_hessian_update_strategy.py
│   │   │   │   │   │   │   test_isotonic_regression.py
│   │   │   │   │   │   │   test_lbfgsb_hessinv.py
│   │   │   │   │   │   │   test_lbfgsb_setulb.py
│   │   │   │   │   │   │   test_least_squares.py
│   │   │   │   │   │   │   test_linear_assignment.py
│   │   │   │   │   │   │   test_linesearch.py
│   │   │   │   │   │   │   test_linprog.py
│   │   │   │   │   │   │   test_lsq_common.py
│   │   │   │   │   │   │   test_lsq_linear.py
│   │   │   │   │   │   │   test_milp.py
│   │   │   │   │   │   │   test_minimize_constrained.py
│   │   │   │   │   │   │   test_minpack.py
│   │   │   │   │   │   │   test_nnls.py
│   │   │   │   │   │   │   test_nonlin.py
│   │   │   │   │   │   │   test_optimize.py
│   │   │   │   │   │   │   test_quadratic_assignment.py
│   │   │   │   │   │   │   test_regression.py
│   │   │   │   │   │   │   test_slsqp.py
│   │   │   │   │   │   │   test_tnc.py
│   │   │   │   │   │   │   test_trustregion.py
│   │   │   │   │   │   │   test_trustregion_exact.py
│   │   │   │   │   │   │   test_trustregion_krylov.py
│   │   │   │   │   │   │   test_zeros.py
│   │   │   │   │   │   │   test__basinhopping.py
│   │   │   │   │   │   │   test__differential_evolution.py
│   │   │   │   │   │   │   test__dual_annealing.py
│   │   │   │   │   │   │   test__linprog_clean_inputs.py
│   │   │   │   │   │   │   test__numdiff.py
│   │   │   │   │   │   │   test__remove_redundancy.py
│   │   │   │   │   │   │   test__root.py
│   │   │   │   │   │   │   test__shgo.py
│   │   │   │   │   │   │   test__spectral.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── _cython_examples/
│   │   │   │   │   │   │   │   extending.pyx
│   │   │   │   │   │   │   │   meson.build
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_bracket.cpython-310.pyc
│   │   │   │   │   │   │   │   test_chandrupatla.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cobyla.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cobyqa.cpython-310.pyc
│   │   │   │   │   │   │   │   test_constraints.cpython-310.pyc
│   │   │   │   │   │   │   │   test_constraint_conversion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cython_optimize.cpython-310.pyc
│   │   │   │   │   │   │   │   test_differentiable_functions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_direct.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extending.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hessian_update_strategy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_isotonic_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_lbfgsb_hessinv.cpython-310.pyc
│   │   │   │   │   │   │   │   test_lbfgsb_setulb.cpython-310.pyc
│   │   │   │   │   │   │   │   test_least_squares.cpython-310.pyc
│   │   │   │   │   │   │   │   test_linear_assignment.cpython-310.pyc
│   │   │   │   │   │   │   │   test_linesearch.cpython-310.pyc
│   │   │   │   │   │   │   │   test_linprog.cpython-310.pyc
│   │   │   │   │   │   │   │   test_lsq_common.cpython-310.pyc
│   │   │   │   │   │   │   │   test_lsq_linear.cpython-310.pyc
│   │   │   │   │   │   │   │   test_milp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_minimize_constrained.cpython-310.pyc
│   │   │   │   │   │   │   │   test_minpack.cpython-310.pyc
│   │   │   │   │   │   │   │   test_nnls.cpython-310.pyc
│   │   │   │   │   │   │   │   test_nonlin.cpython-310.pyc
│   │   │   │   │   │   │   │   test_optimize.cpython-310.pyc
│   │   │   │   │   │   │   │   test_quadratic_assignment.cpython-310.pyc
│   │   │   │   │   │   │   │   test_regression.cpython-310.pyc
│   │   │   │   │   │   │   │   test_slsqp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_tnc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_trustregion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_trustregion_exact.cpython-310.pyc
│   │   │   │   │   │   │   │   test_trustregion_krylov.cpython-310.pyc
│   │   │   │   │   │   │   │   test_zeros.cpython-310.pyc
│   │   │   │   │   │   │   │   test__basinhopping.cpython-310.pyc
│   │   │   │   │   │   │   │   test__differential_evolution.cpython-310.pyc
│   │   │   │   │   │   │   │   test__dual_annealing.cpython-310.pyc
│   │   │   │   │   │   │   │   test__linprog_clean_inputs.cpython-310.pyc
│   │   │   │   │   │   │   │   test__numdiff.cpython-310.pyc
│   │   │   │   │   │   │   │   test__remove_redundancy.cpython-310.pyc
│   │   │   │   │   │   │   │   test__root.cpython-310.pyc
│   │   │   │   │   │   │   │   test__shgo.cpython-310.pyc
│   │   │   │   │   │   │   │   test__spectral.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _highspy/
│   │   │   │   │   │   │   _core.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _core.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _highs_options.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _highs_options.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _highs_wrapper.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _highs_wrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _lsq/
│   │   │   │   │   │   │   bvls.py
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   dogbox.py
│   │   │   │   │   │   │   givens_elimination.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   givens_elimination.cp310-win_amd64.pyd
│   │   │   │   │   │   │   least_squares.py
│   │   │   │   │   │   │   lsq_linear.py
│   │   │   │   │   │   │   trf.py
│   │   │   │   │   │   │   trf_linear.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   bvls.cpython-310.pyc
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   dogbox.cpython-310.pyc
│   │   │   │   │   │   │   │   least_squares.cpython-310.pyc
│   │   │   │   │   │   │   │   lsq_linear.cpython-310.pyc
│   │   │   │   │   │   │   │   trf.cpython-310.pyc
│   │   │   │   │   │   │   │   trf_linear.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _shgo_lib/
│   │   │   │   │   │   │   _complex.py
│   │   │   │   │   │   │   _vertex.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _complex.cpython-310.pyc
│   │   │   │   │   │   │   │   _vertex.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _trlib/
│   │   │   │   │   │   │   _trlib.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _trlib.cp310-win_amd64.pyd
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _trustregion_constr/
│   │   │   │   │   │   │   canonical_constraint.py
│   │   │   │   │   │   │   equality_constrained_sqp.py
│   │   │   │   │   │   │   minimize_trustregion_constr.py
│   │   │   │   │   │   │   projections.py
│   │   │   │   │   │   │   qp_subproblem.py
│   │   │   │   │   │   │   report.py
│   │   │   │   │   │   │   tr_interior_point.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_canonical_constraint.py
│   │   │   │   │   │   │   │   test_nested_minimize.py
│   │   │   │   │   │   │   │   test_projections.py
│   │   │   │   │   │   │   │   test_qp_subproblem.py
│   │   │   │   │   │   │   │   test_report.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_canonical_constraint.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_nested_minimize.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_projections.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_qp_subproblem.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_report.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   canonical_constraint.cpython-310.pyc
│   │   │   │   │   │   │   │   equality_constrained_sqp.cpython-310.pyc
│   │   │   │   │   │   │   │   minimize_trustregion_constr.cpython-310.pyc
│   │   │   │   │   │   │   │   projections.cpython-310.pyc
│   │   │   │   │   │   │   │   qp_subproblem.cpython-310.pyc
│   │   │   │   │   │   │   │   report.cpython-310.pyc
│   │   │   │   │   │   │   │   tr_interior_point.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   cobyla.cpython-310.pyc
│   │   │   │   │   │   │   elementwise.cpython-310.pyc
│   │   │   │   │   │   │   lbfgsb.cpython-310.pyc
│   │   │   │   │   │   │   linesearch.cpython-310.pyc
│   │   │   │   │   │   │   minpack.cpython-310.pyc
│   │   │   │   │   │   │   minpack2.cpython-310.pyc
│   │   │   │   │   │   │   moduleTNC.cpython-310.pyc
│   │   │   │   │   │   │   nonlin.cpython-310.pyc
│   │   │   │   │   │   │   optimize.cpython-310.pyc
│   │   │   │   │   │   │   slsqp.cpython-310.pyc
│   │   │   │   │   │   │   tnc.cpython-310.pyc
│   │   │   │   │   │   │   zeros.cpython-310.pyc
│   │   │   │   │   │   │   _basinhopping.cpython-310.pyc
│   │   │   │   │   │   │   _bracket.cpython-310.pyc
│   │   │   │   │   │   │   _chandrupatla.cpython-310.pyc
│   │   │   │   │   │   │   _cobyla_py.cpython-310.pyc
│   │   │   │   │   │   │   _cobyqa_py.cpython-310.pyc
│   │   │   │   │   │   │   _constraints.cpython-310.pyc
│   │   │   │   │   │   │   _dcsrch.cpython-310.pyc
│   │   │   │   │   │   │   _differentiable_functions.cpython-310.pyc
│   │   │   │   │   │   │   _differentialevolution.cpython-310.pyc
│   │   │   │   │   │   │   _direct_py.cpython-310.pyc
│   │   │   │   │   │   │   _dual_annealing.cpython-310.pyc
│   │   │   │   │   │   │   _elementwise.cpython-310.pyc
│   │   │   │   │   │   │   _hessian_update_strategy.cpython-310.pyc
│   │   │   │   │   │   │   _isotonic.cpython-310.pyc
│   │   │   │   │   │   │   _lbfgsb_py.cpython-310.pyc
│   │   │   │   │   │   │   _linesearch.cpython-310.pyc
│   │   │   │   │   │   │   _linprog.cpython-310.pyc
│   │   │   │   │   │   │   _linprog_doc.cpython-310.pyc
│   │   │   │   │   │   │   _linprog_highs.cpython-310.pyc
│   │   │   │   │   │   │   _linprog_ip.cpython-310.pyc
│   │   │   │   │   │   │   _linprog_rs.cpython-310.pyc
│   │   │   │   │   │   │   _linprog_simplex.cpython-310.pyc
│   │   │   │   │   │   │   _linprog_util.cpython-310.pyc
│   │   │   │   │   │   │   _milp.cpython-310.pyc
│   │   │   │   │   │   │   _minimize.cpython-310.pyc
│   │   │   │   │   │   │   _minpack_py.cpython-310.pyc
│   │   │   │   │   │   │   _nnls.cpython-310.pyc
│   │   │   │   │   │   │   _nonlin.cpython-310.pyc
│   │   │   │   │   │   │   _numdiff.cpython-310.pyc
│   │   │   │   │   │   │   _optimize.cpython-310.pyc
│   │   │   │   │   │   │   _qap.cpython-310.pyc
│   │   │   │   │   │   │   _remove_redundancy.cpython-310.pyc
│   │   │   │   │   │   │   _root.cpython-310.pyc
│   │   │   │   │   │   │   _root_scalar.cpython-310.pyc
│   │   │   │   │   │   │   _shgo.cpython-310.pyc
│   │   │   │   │   │   │   _slsqp_py.cpython-310.pyc
│   │   │   │   │   │   │   _spectral.cpython-310.pyc
│   │   │   │   │   │   │   _tnc.cpython-310.pyc
│   │   │   │   │   │   │   _trustregion.cpython-310.pyc
│   │   │   │   │   │   │   _trustregion_dogleg.cpython-310.pyc
│   │   │   │   │   │   │   _trustregion_exact.cpython-310.pyc
│   │   │   │   │   │   │   _trustregion_krylov.cpython-310.pyc
│   │   │   │   │   │   │   _trustregion_ncg.cpython-310.pyc
│   │   │   │   │   │   │   _tstutils.cpython-310.pyc
│   │   │   │   │   │   │   _zeros_py.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── signal/
│   │   │   │   │   │   bsplines.py
│   │   │   │   │   │   filter_design.py
│   │   │   │   │   │   fir_filter_design.py
│   │   │   │   │   │   ltisys.py
│   │   │   │   │   │   lti_conversion.py
│   │   │   │   │   │   signaltools.py
│   │   │   │   │   │   spectral.py
│   │   │   │   │   │   spline.py
│   │   │   │   │   │   waveforms.py
│   │   │   │   │   │   wavelets.py
│   │   │   │   │   │   _arraytools.py
│   │   │   │   │   │   _czt.py
│   │   │   │   │   │   _filter_design.py
│   │   │   │   │   │   _fir_filter_design.py
│   │   │   │   │   │   _ltisys.py
│   │   │   │   │   │   _lti_conversion.py
│   │   │   │   │   │   _max_len_seq.py
│   │   │   │   │   │   _max_len_seq_inner.cp310-win_amd64.dll.a
│   │   │   │   │   │   _max_len_seq_inner.cp310-win_amd64.pyd
│   │   │   │   │   │   _peak_finding.py
│   │   │   │   │   │   _peak_finding_utils.cp310-win_amd64.dll.a
│   │   │   │   │   │   _peak_finding_utils.cp310-win_amd64.pyd
│   │   │   │   │   │   _savitzky_golay.py
│   │   │   │   │   │   _short_time_fft.py
│   │   │   │   │   │   _signaltools.py
│   │   │   │   │   │   _sigtools.cp310-win_amd64.dll.a
│   │   │   │   │   │   _sigtools.cp310-win_amd64.pyd
│   │   │   │   │   │   _sosfilt.cp310-win_amd64.dll.a
│   │   │   │   │   │   _sosfilt.cp310-win_amd64.pyd
│   │   │   │   │   │   _spectral_py.py
│   │   │   │   │   │   _spline.cp310-win_amd64.dll.a
│   │   │   │   │   │   _spline.cp310-win_amd64.pyd
│   │   │   │   │   │   _spline.pyi
│   │   │   │   │   │   _spline_filters.py
│   │   │   │   │   │   _upfirdn.py
│   │   │   │   │   │   _upfirdn_apply.cp310-win_amd64.dll.a
│   │   │   │   │   │   _upfirdn_apply.cp310-win_amd64.pyd
│   │   │   │   │   │   _waveforms.py
│   │   │   │   │   │   _wavelets.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   mpsig.py
│   │   │   │   │   │   │   test_array_tools.py
│   │   │   │   │   │   │   test_bsplines.py
│   │   │   │   │   │   │   test_cont2discrete.py
│   │   │   │   │   │   │   test_czt.py
│   │   │   │   │   │   │   test_dltisys.py
│   │   │   │   │   │   │   test_filter_design.py
│   │   │   │   │   │   │   test_fir_filter_design.py
│   │   │   │   │   │   │   test_ltisys.py
│   │   │   │   │   │   │   test_max_len_seq.py
│   │   │   │   │   │   │   test_peak_finding.py
│   │   │   │   │   │   │   test_result_type.py
│   │   │   │   │   │   │   test_savitzky_golay.py
│   │   │   │   │   │   │   test_short_time_fft.py
│   │   │   │   │   │   │   test_signaltools.py
│   │   │   │   │   │   │   test_spectral.py
│   │   │   │   │   │   │   test_splines.py
│   │   │   │   │   │   │   test_upfirdn.py
│   │   │   │   │   │   │   test_waveforms.py
│   │   │   │   │   │   │   test_wavelets.py
│   │   │   │   │   │   │   test_windows.py
│   │   │   │   │   │   │   _scipy_spectral_test_shim.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   mpsig.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_tools.cpython-310.pyc
│   │   │   │   │   │   │   │   test_bsplines.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cont2discrete.cpython-310.pyc
│   │   │   │   │   │   │   │   test_czt.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dltisys.cpython-310.pyc
│   │   │   │   │   │   │   │   test_filter_design.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fir_filter_design.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ltisys.cpython-310.pyc
│   │   │   │   │   │   │   │   test_max_len_seq.cpython-310.pyc
│   │   │   │   │   │   │   │   test_peak_finding.cpython-310.pyc
│   │   │   │   │   │   │   │   test_result_type.cpython-310.pyc
│   │   │   │   │   │   │   │   test_savitzky_golay.cpython-310.pyc
│   │   │   │   │   │   │   │   test_short_time_fft.cpython-310.pyc
│   │   │   │   │   │   │   │   test_signaltools.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spectral.cpython-310.pyc
│   │   │   │   │   │   │   │   test_splines.cpython-310.pyc
│   │   │   │   │   │   │   │   test_upfirdn.cpython-310.pyc
│   │   │   │   │   │   │   │   test_waveforms.cpython-310.pyc
│   │   │   │   │   │   │   │   test_wavelets.cpython-310.pyc
│   │   │   │   │   │   │   │   test_windows.cpython-310.pyc
│   │   │   │   │   │   │   │   _scipy_spectral_test_shim.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── windows/
│   │   │   │   │   │   │   windows.py
│   │   │   │   │   │   │   _windows.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   windows.cpython-310.pyc
│   │   │   │   │   │   │   │   _windows.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   bsplines.cpython-310.pyc
│   │   │   │   │   │   │   filter_design.cpython-310.pyc
│   │   │   │   │   │   │   fir_filter_design.cpython-310.pyc
│   │   │   │   │   │   │   ltisys.cpython-310.pyc
│   │   │   │   │   │   │   lti_conversion.cpython-310.pyc
│   │   │   │   │   │   │   signaltools.cpython-310.pyc
│   │   │   │   │   │   │   spectral.cpython-310.pyc
│   │   │   │   │   │   │   spline.cpython-310.pyc
│   │   │   │   │   │   │   waveforms.cpython-310.pyc
│   │   │   │   │   │   │   wavelets.cpython-310.pyc
│   │   │   │   │   │   │   _arraytools.cpython-310.pyc
│   │   │   │   │   │   │   _czt.cpython-310.pyc
│   │   │   │   │   │   │   _filter_design.cpython-310.pyc
│   │   │   │   │   │   │   _fir_filter_design.cpython-310.pyc
│   │   │   │   │   │   │   _ltisys.cpython-310.pyc
│   │   │   │   │   │   │   _lti_conversion.cpython-310.pyc
│   │   │   │   │   │   │   _max_len_seq.cpython-310.pyc
│   │   │   │   │   │   │   _peak_finding.cpython-310.pyc
│   │   │   │   │   │   │   _savitzky_golay.cpython-310.pyc
│   │   │   │   │   │   │   _short_time_fft.cpython-310.pyc
│   │   │   │   │   │   │   _signaltools.cpython-310.pyc
│   │   │   │   │   │   │   _spectral_py.cpython-310.pyc
│   │   │   │   │   │   │   _spline_filters.cpython-310.pyc
│   │   │   │   │   │   │   _upfirdn.cpython-310.pyc
│   │   │   │   │   │   │   _waveforms.cpython-310.pyc
│   │   │   │   │   │   │   _wavelets.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── sparse/
│   │   │   │   │   │   base.py
│   │   │   │   │   │   bsr.py
│   │   │   │   │   │   compressed.py
│   │   │   │   │   │   construct.py
│   │   │   │   │   │   coo.py
│   │   │   │   │   │   csc.py
│   │   │   │   │   │   csr.py
│   │   │   │   │   │   data.py
│   │   │   │   │   │   dia.py
│   │   │   │   │   │   dok.py
│   │   │   │   │   │   extract.py
│   │   │   │   │   │   lil.py
│   │   │   │   │   │   sparsetools.py
│   │   │   │   │   │   spfuncs.py
│   │   │   │   │   │   sputils.py
│   │   │   │   │   │   _base.py
│   │   │   │   │   │   _bsr.py
│   │   │   │   │   │   _compressed.py
│   │   │   │   │   │   _construct.py
│   │   │   │   │   │   _coo.py
│   │   │   │   │   │   _csc.py
│   │   │   │   │   │   _csparsetools.cp310-win_amd64.dll.a
│   │   │   │   │   │   _csparsetools.cp310-win_amd64.pyd
│   │   │   │   │   │   _csr.py
│   │   │   │   │   │   _data.py
│   │   │   │   │   │   _dia.py
│   │   │   │   │   │   _dok.py
│   │   │   │   │   │   _extract.py
│   │   │   │   │   │   _index.py
│   │   │   │   │   │   _lil.py
│   │   │   │   │   │   _matrix.py
│   │   │   │   │   │   _matrix_io.py
│   │   │   │   │   │   _sparsetools.cp310-win_amd64.dll.a
│   │   │   │   │   │   _sparsetools.cp310-win_amd64.pyd
│   │   │   │   │   │   _spfuncs.py
│   │   │   │   │   │   _sputils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── csgraph/
│   │   │   │   │   │   │   _flow.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _flow.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _laplacian.py
│   │   │   │   │   │   │   _matching.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _matching.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _min_spanning_tree.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _min_spanning_tree.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _reordering.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _reordering.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _shortest_path.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _shortest_path.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _tools.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _tools.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _traversal.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _traversal.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _validation.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_connected_components.py
│   │   │   │   │   │   │   │   test_conversions.py
│   │   │   │   │   │   │   │   test_flow.py
│   │   │   │   │   │   │   │   test_graph_laplacian.py
│   │   │   │   │   │   │   │   test_matching.py
│   │   │   │   │   │   │   │   test_pydata_sparse.py
│   │   │   │   │   │   │   │   test_reordering.py
│   │   │   │   │   │   │   │   test_shortest_path.py
│   │   │   │   │   │   │   │   test_spanning_tree.py
│   │   │   │   │   │   │   │   test_traversal.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_connected_components.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_conversions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_flow.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_graph_laplacian.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_matching.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pydata_sparse.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_reordering.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_shortest_path.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_spanning_tree.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_traversal.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _laplacian.cpython-310.pyc
│   │   │   │   │   │   │   │   _validation.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── linalg/
│   │   │   │   │   │   │   dsolve.py
│   │   │   │   │   │   │   eigen.py
│   │   │   │   │   │   │   interface.py
│   │   │   │   │   │   │   isolve.py
│   │   │   │   │   │   │   matfuncs.py
│   │   │   │   │   │   │   _expm_multiply.py
│   │   │   │   │   │   │   _interface.py
│   │   │   │   │   │   │   _matfuncs.py
│   │   │   │   │   │   │   _norm.py
│   │   │   │   │   │   │   _onenormest.py
│   │   │   │   │   │   │   _special_sparse_arrays.py
│   │   │   │   │   │   │   _svdp.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   propack_test_data.npz
│   │   │   │   │   │   │   │   test_expm_multiply.py
│   │   │   │   │   │   │   │   test_interface.py
│   │   │   │   │   │   │   │   test_matfuncs.py
│   │   │   │   │   │   │   │   test_norm.py
│   │   │   │   │   │   │   │   test_onenormest.py
│   │   │   │   │   │   │   │   test_propack.py
│   │   │   │   │   │   │   │   test_pydata_sparse.py
│   │   │   │   │   │   │   │   test_special_sparse_arrays.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_expm_multiply.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_interface.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_matfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_norm.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_onenormest.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_propack.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_pydata_sparse.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_special_sparse_arrays.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── _dsolve/
│   │   │   │   │   │   │   │   linsolve.py
│   │   │   │   │   │   │   │   _add_newdocs.py
│   │   │   │   │   │   │   │   _superlu.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   │   _superlu.cp310-win_amd64.pyd
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   │   test_linsolve.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_linsolve.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   linsolve.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _add_newdocs.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── _eigen/
│   │   │   │   │   │   │   │   _svds.py
│   │   │   │   │   │   │   │   _svds_doc.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── arpack/
│   │   │   │   │   │   │   │   │   arpack.py
│   │   │   │   │   │   │   │   │   COPYING
│   │   │   │   │   │   │   │   │   _arpack.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   │   │   _arpack.cp310-win_amd64.pyd
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   │   │   test_arpack.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   test_arpack.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   arpack.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── lobpcg/
│   │   │   │   │   │   │   │   │   lobpcg.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   │   │   test_lobpcg.py
│   │   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   │   test_lobpcg.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   lobpcg.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   │   test_svds.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_svds.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _svds.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _svds_doc.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── _isolve/
│   │   │   │   │   │   │   │   iterative.py
│   │   │   │   │   │   │   │   lgmres.py
│   │   │   │   │   │   │   │   lsmr.py
│   │   │   │   │   │   │   │   lsqr.py
│   │   │   │   │   │   │   │   minres.py
│   │   │   │   │   │   │   │   tfqmr.py
│   │   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   │   _gcrotmk.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   │   test_gcrotmk.py
│   │   │   │   │   │   │   │   │   test_iterative.py
│   │   │   │   │   │   │   │   │   test_lgmres.py
│   │   │   │   │   │   │   │   │   test_lsmr.py
│   │   │   │   │   │   │   │   │   test_lsqr.py
│   │   │   │   │   │   │   │   │   test_minres.py
│   │   │   │   │   │   │   │   │   test_utils.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   test_gcrotmk.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_iterative.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_lgmres.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_lsmr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_lsqr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_minres.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   test_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   iterative.cpython-310.pyc
│   │   │   │   │   │   │   │   │   lgmres.cpython-310.pyc
│   │   │   │   │   │   │   │   │   lsmr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   lsqr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   minres.cpython-310.pyc
│   │   │   │   │   │   │   │   │   tfqmr.cpython-310.pyc
│   │   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _gcrotmk.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── _propack/
│   │   │   │   │   │   │   │   _cpropack.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   │   _cpropack.cp310-win_amd64.pyd
│   │   │   │   │   │   │   │   _dpropack.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   │   _dpropack.cp310-win_amd64.pyd
│   │   │   │   │   │   │   │   _spropack.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   │   _spropack.cp310-win_amd64.pyd
│   │   │   │   │   │   │   │   _zpropack.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   │   _zpropack.cp310-win_amd64.pyd
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   dsolve.cpython-310.pyc
│   │   │   │   │   │   │   │   eigen.cpython-310.pyc
│   │   │   │   │   │   │   │   interface.cpython-310.pyc
│   │   │   │   │   │   │   │   isolve.cpython-310.pyc
│   │   │   │   │   │   │   │   matfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   _expm_multiply.cpython-310.pyc
│   │   │   │   │   │   │   │   _interface.cpython-310.pyc
│   │   │   │   │   │   │   │   _matfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   _norm.cpython-310.pyc
│   │   │   │   │   │   │   │   _onenormest.cpython-310.pyc
│   │   │   │   │   │   │   │   _special_sparse_arrays.cpython-310.pyc
│   │   │   │   │   │   │   │   _svdp.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_arithmetic1d.py
│   │   │   │   │   │   │   test_array_api.py
│   │   │   │   │   │   │   test_base.py
│   │   │   │   │   │   │   test_common1d.py
│   │   │   │   │   │   │   test_construct.py
│   │   │   │   │   │   │   test_coo.py
│   │   │   │   │   │   │   test_csc.py
│   │   │   │   │   │   │   test_csr.py
│   │   │   │   │   │   │   test_dok.py
│   │   │   │   │   │   │   test_extract.py
│   │   │   │   │   │   │   test_indexing1d.py
│   │   │   │   │   │   │   test_matrix_io.py
│   │   │   │   │   │   │   test_minmax1d.py
│   │   │   │   │   │   │   test_sparsetools.py
│   │   │   │   │   │   │   test_spfuncs.py
│   │   │   │   │   │   │   test_sputils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   csc_py2.npz
│   │   │   │   │   │   │   │   csc_py3.npz
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_arithmetic1d.cpython-310.pyc
│   │   │   │   │   │   │   │   test_array_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_base.cpython-310.pyc
│   │   │   │   │   │   │   │   test_common1d.cpython-310.pyc
│   │   │   │   │   │   │   │   test_construct.cpython-310.pyc
│   │   │   │   │   │   │   │   test_coo.cpython-310.pyc
│   │   │   │   │   │   │   │   test_csc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_csr.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dok.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extract.cpython-310.pyc
│   │   │   │   │   │   │   │   test_indexing1d.cpython-310.pyc
│   │   │   │   │   │   │   │   test_matrix_io.cpython-310.pyc
│   │   │   │   │   │   │   │   test_minmax1d.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sparsetools.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spfuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sputils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base.cpython-310.pyc
│   │   │   │   │   │   │   bsr.cpython-310.pyc
│   │   │   │   │   │   │   compressed.cpython-310.pyc
│   │   │   │   │   │   │   construct.cpython-310.pyc
│   │   │   │   │   │   │   coo.cpython-310.pyc
│   │   │   │   │   │   │   csc.cpython-310.pyc
│   │   │   │   │   │   │   csr.cpython-310.pyc
│   │   │   │   │   │   │   data.cpython-310.pyc
│   │   │   │   │   │   │   dia.cpython-310.pyc
│   │   │   │   │   │   │   dok.cpython-310.pyc
│   │   │   │   │   │   │   extract.cpython-310.pyc
│   │   │   │   │   │   │   lil.cpython-310.pyc
│   │   │   │   │   │   │   sparsetools.cpython-310.pyc
│   │   │   │   │   │   │   spfuncs.cpython-310.pyc
│   │   │   │   │   │   │   sputils.cpython-310.pyc
│   │   │   │   │   │   │   _base.cpython-310.pyc
│   │   │   │   │   │   │   _bsr.cpython-310.pyc
│   │   │   │   │   │   │   _compressed.cpython-310.pyc
│   │   │   │   │   │   │   _construct.cpython-310.pyc
│   │   │   │   │   │   │   _coo.cpython-310.pyc
│   │   │   │   │   │   │   _csc.cpython-310.pyc
│   │   │   │   │   │   │   _csr.cpython-310.pyc
│   │   │   │   │   │   │   _data.cpython-310.pyc
│   │   │   │   │   │   │   _dia.cpython-310.pyc
│   │   │   │   │   │   │   _dok.cpython-310.pyc
│   │   │   │   │   │   │   _extract.cpython-310.pyc
│   │   │   │   │   │   │   _index.cpython-310.pyc
│   │   │   │   │   │   │   _lil.cpython-310.pyc
│   │   │   │   │   │   │   _matrix.cpython-310.pyc
│   │   │   │   │   │   │   _matrix_io.cpython-310.pyc
│   │   │   │   │   │   │   _spfuncs.cpython-310.pyc
│   │   │   │   │   │   │   _sputils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── spatial/
│   │   │   │   │   │   ckdtree.py
│   │   │   │   │   │   distance.py
│   │   │   │   │   │   distance.pyi
│   │   │   │   │   │   kdtree.py
│   │   │   │   │   │   qhull.py
│   │   │   │   │   │   _ckdtree.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ckdtree.cp310-win_amd64.pyd
│   │   │   │   │   │   _distance_pybind.cp310-win_amd64.dll.a
│   │   │   │   │   │   _distance_pybind.cp310-win_amd64.pyd
│   │   │   │   │   │   _distance_wrap.cp310-win_amd64.dll.a
│   │   │   │   │   │   _distance_wrap.cp310-win_amd64.pyd
│   │   │   │   │   │   _geometric_slerp.py
│   │   │   │   │   │   _hausdorff.cp310-win_amd64.dll.a
│   │   │   │   │   │   _hausdorff.cp310-win_amd64.pyd
│   │   │   │   │   │   _kdtree.py
│   │   │   │   │   │   _plotutils.py
│   │   │   │   │   │   _procrustes.py
│   │   │   │   │   │   _qhull.cp310-win_amd64.dll.a
│   │   │   │   │   │   _qhull.cp310-win_amd64.pyd
│   │   │   │   │   │   _qhull.pyi
│   │   │   │   │   │   _spherical_voronoi.py
│   │   │   │   │   │   _voronoi.cp310-win_amd64.dll.a
│   │   │   │   │   │   _voronoi.cp310-win_amd64.pyd
│   │   │   │   │   │   _voronoi.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── qhull_src/
│   │   │   │   │   │   │   COPYING.txt
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_distance.py
│   │   │   │   │   │   │   test_hausdorff.py
│   │   │   │   │   │   │   test_kdtree.py
│   │   │   │   │   │   │   test_qhull.py
│   │   │   │   │   │   │   test_slerp.py
│   │   │   │   │   │   │   test_spherical_voronoi.py
│   │   │   │   │   │   │   test__plotutils.py
│   │   │   │   │   │   │   test__procrustes.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   cdist-X1.txt
│   │   │   │   │   │   │   │   cdist-X2.txt
│   │   │   │   │   │   │   │   degenerate_pointset.npz
│   │   │   │   │   │   │   │   iris.txt
│   │   │   │   │   │   │   │   pdist-boolean-inp.txt
│   │   │   │   │   │   │   │   pdist-chebyshev-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-chebyshev-ml.txt
│   │   │   │   │   │   │   │   pdist-cityblock-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-cityblock-ml.txt
│   │   │   │   │   │   │   │   pdist-correlation-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-correlation-ml.txt
│   │   │   │   │   │   │   │   pdist-cosine-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-cosine-ml.txt
│   │   │   │   │   │   │   │   pdist-double-inp.txt
│   │   │   │   │   │   │   │   pdist-euclidean-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-euclidean-ml.txt
│   │   │   │   │   │   │   │   pdist-hamming-ml.txt
│   │   │   │   │   │   │   │   pdist-jaccard-ml.txt
│   │   │   │   │   │   │   │   pdist-jensenshannon-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-jensenshannon-ml.txt
│   │   │   │   │   │   │   │   pdist-minkowski-3.2-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-minkowski-3.2-ml.txt
│   │   │   │   │   │   │   │   pdist-minkowski-5.8-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-seuclidean-ml-iris.txt
│   │   │   │   │   │   │   │   pdist-seuclidean-ml.txt
│   │   │   │   │   │   │   │   pdist-spearman-ml.txt
│   │   │   │   │   │   │   │   random-bool-data.txt
│   │   │   │   │   │   │   │   random-double-data.txt
│   │   │   │   │   │   │   │   random-int-data.txt
│   │   │   │   │   │   │   │   random-uint-data.txt
│   │   │   │   │   │   │   │   selfdual-4d-polytope.txt
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_distance.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hausdorff.cpython-310.pyc
│   │   │   │   │   │   │   │   test_kdtree.cpython-310.pyc
│   │   │   │   │   │   │   │   test_qhull.cpython-310.pyc
│   │   │   │   │   │   │   │   test_slerp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spherical_voronoi.cpython-310.pyc
│   │   │   │   │   │   │   │   test__plotutils.cpython-310.pyc
│   │   │   │   │   │   │   │   test__procrustes.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── transform/
│   │   │   │   │   │   │   rotation.py
│   │   │   │   │   │   │   _rotation.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _rotation.cp310-win_amd64.pyd
│   │   │   │   │   │   │   _rotation_groups.py
│   │   │   │   │   │   │   _rotation_spline.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   │   test_rotation.py
│   │   │   │   │   │   │   │   test_rotation_groups.py
│   │   │   │   │   │   │   │   test_rotation_spline.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   test_rotation.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rotation_groups.cpython-310.pyc
│   │   │   │   │   │   │   │   │   test_rotation_spline.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   rotation.cpython-310.pyc
│   │   │   │   │   │   │   │   _rotation_groups.cpython-310.pyc
│   │   │   │   │   │   │   │   _rotation_spline.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   ckdtree.cpython-310.pyc
│   │   │   │   │   │   │   distance.cpython-310.pyc
│   │   │   │   │   │   │   kdtree.cpython-310.pyc
│   │   │   │   │   │   │   qhull.cpython-310.pyc
│   │   │   │   │   │   │   _geometric_slerp.cpython-310.pyc
│   │   │   │   │   │   │   _kdtree.cpython-310.pyc
│   │   │   │   │   │   │   _plotutils.cpython-310.pyc
│   │   │   │   │   │   │   _procrustes.cpython-310.pyc
│   │   │   │   │   │   │   _spherical_voronoi.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── special/
│   │   │   │   │   │   add_newdocs.py
│   │   │   │   │   │   basic.py
│   │   │   │   │   │   cython_special.cp310-win_amd64.dll.a
│   │   │   │   │   │   cython_special.cp310-win_amd64.pyd
│   │   │   │   │   │   cython_special.pxd
│   │   │   │   │   │   cython_special.pyi
│   │   │   │   │   │   libsf_error_state.dll
│   │   │   │   │   │   libsf_error_state.dll.a
│   │   │   │   │   │   orthogonal.py
│   │   │   │   │   │   sf_error.py
│   │   │   │   │   │   specfun.py
│   │   │   │   │   │   spfun_stats.py
│   │   │   │   │   │   _add_newdocs.py
│   │   │   │   │   │   _basic.py
│   │   │   │   │   │   _comb.cp310-win_amd64.dll.a
│   │   │   │   │   │   _comb.cp310-win_amd64.pyd
│   │   │   │   │   │   _ellip_harm.py
│   │   │   │   │   │   _ellip_harm_2.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ellip_harm_2.cp310-win_amd64.pyd
│   │   │   │   │   │   _gufuncs.cp310-win_amd64.dll.a
│   │   │   │   │   │   _gufuncs.cp310-win_amd64.pyd
│   │   │   │   │   │   _input_validation.py
│   │   │   │   │   │   _lambertw.py
│   │   │   │   │   │   _logsumexp.py
│   │   │   │   │   │   _mptestutils.py
│   │   │   │   │   │   _multiufuncs.py
│   │   │   │   │   │   _orthogonal.py
│   │   │   │   │   │   _orthogonal.pyi
│   │   │   │   │   │   _sf_error.py
│   │   │   │   │   │   _specfun.cp310-win_amd64.dll.a
│   │   │   │   │   │   _specfun.cp310-win_amd64.pyd
│   │   │   │   │   │   _special_ufuncs.cp310-win_amd64.dll.a
│   │   │   │   │   │   _special_ufuncs.cp310-win_amd64.pyd
│   │   │   │   │   │   _spfun_stats.py
│   │   │   │   │   │   _spherical_bessel.py
│   │   │   │   │   │   _support_alternative_backends.py
│   │   │   │   │   │   _testutils.py
│   │   │   │   │   │   _test_internal.cp310-win_amd64.dll.a
│   │   │   │   │   │   _test_internal.cp310-win_amd64.pyd
│   │   │   │   │   │   _test_internal.pyi
│   │   │   │   │   │   _ufuncs.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ufuncs.cp310-win_amd64.pyd
│   │   │   │   │   │   _ufuncs.pyi
│   │   │   │   │   │   _ufuncs.pyx
│   │   │   │   │   │   _ufuncs_cxx.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ufuncs_cxx.cp310-win_amd64.pyd
│   │   │   │   │   │   _ufuncs_cxx.pxd
│   │   │   │   │   │   _ufuncs_cxx.pyx
│   │   │   │   │   │   _ufuncs_cxx_defs.h
│   │   │   │   │   │   _ufuncs_defs.h
│   │   │   │   │   │   __init__.pxd
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_basic.py
│   │   │   │   │   │   │   test_bdtr.py
│   │   │   │   │   │   │   test_boost_ufuncs.py
│   │   │   │   │   │   │   test_boxcox.py
│   │   │   │   │   │   │   test_cdflib.py
│   │   │   │   │   │   │   test_cdft_asymptotic.py
│   │   │   │   │   │   │   test_cephes_intp_cast.py
│   │   │   │   │   │   │   test_cosine_distr.py
│   │   │   │   │   │   │   test_cython_special.py
│   │   │   │   │   │   │   test_data.py
│   │   │   │   │   │   │   test_dd.py
│   │   │   │   │   │   │   test_digamma.py
│   │   │   │   │   │   │   test_ellip_harm.py
│   │   │   │   │   │   │   test_erfinv.py
│   │   │   │   │   │   │   test_exponential_integrals.py
│   │   │   │   │   │   │   test_extending.py
│   │   │   │   │   │   │   test_faddeeva.py
│   │   │   │   │   │   │   test_gamma.py
│   │   │   │   │   │   │   test_gammainc.py
│   │   │   │   │   │   │   test_hyp2f1.py
│   │   │   │   │   │   │   test_hypergeometric.py
│   │   │   │   │   │   │   test_iv_ratio.py
│   │   │   │   │   │   │   test_kolmogorov.py
│   │   │   │   │   │   │   test_lambertw.py
│   │   │   │   │   │   │   test_legendre.py
│   │   │   │   │   │   │   test_loggamma.py
│   │   │   │   │   │   │   test_logit.py
│   │   │   │   │   │   │   test_logsumexp.py
│   │   │   │   │   │   │   test_log_softmax.py
│   │   │   │   │   │   │   test_mpmath.py
│   │   │   │   │   │   │   test_nan_inputs.py
│   │   │   │   │   │   │   test_ndtr.py
│   │   │   │   │   │   │   test_ndtri_exp.py
│   │   │   │   │   │   │   test_orthogonal.py
│   │   │   │   │   │   │   test_orthogonal_eval.py
│   │   │   │   │   │   │   test_owens_t.py
│   │   │   │   │   │   │   test_pcf.py
│   │   │   │   │   │   │   test_pdtr.py
│   │   │   │   │   │   │   test_powm1.py
│   │   │   │   │   │   │   test_precompute_expn_asy.py
│   │   │   │   │   │   │   test_precompute_gammainc.py
│   │   │   │   │   │   │   test_precompute_utils.py
│   │   │   │   │   │   │   test_round.py
│   │   │   │   │   │   │   test_sf_error.py
│   │   │   │   │   │   │   test_sici.py
│   │   │   │   │   │   │   test_specfun.py
│   │   │   │   │   │   │   test_spence.py
│   │   │   │   │   │   │   test_spfun_stats.py
│   │   │   │   │   │   │   test_spherical_bessel.py
│   │   │   │   │   │   │   test_sph_harm.py
│   │   │   │   │   │   │   test_support_alternative_backends.py
│   │   │   │   │   │   │   test_trig.py
│   │   │   │   │   │   │   test_ufunc_signatures.py
│   │   │   │   │   │   │   test_wrightomega.py
│   │   │   │   │   │   │   test_wright_bessel.py
│   │   │   │   │   │   │   test_xsf_cuda.py
│   │   │   │   │   │   │   test_zeta.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   boost.npz
│   │   │   │   │   │   │   │   gsl.npz
│   │   │   │   │   │   │   │   local.npz
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── _cython_examples/
│   │   │   │   │   │   │   │   extending.pyx
│   │   │   │   │   │   │   │   meson.build
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_bdtr.cpython-310.pyc
│   │   │   │   │   │   │   │   test_boost_ufuncs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_boxcox.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cdflib.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cdft_asymptotic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cephes_intp_cast.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cosine_distr.cpython-310.pyc
│   │   │   │   │   │   │   │   test_cython_special.cpython-310.pyc
│   │   │   │   │   │   │   │   test_data.cpython-310.pyc
│   │   │   │   │   │   │   │   test_dd.cpython-310.pyc
│   │   │   │   │   │   │   │   test_digamma.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ellip_harm.cpython-310.pyc
│   │   │   │   │   │   │   │   test_erfinv.cpython-310.pyc
│   │   │   │   │   │   │   │   test_exponential_integrals.cpython-310.pyc
│   │   │   │   │   │   │   │   test_extending.cpython-310.pyc
│   │   │   │   │   │   │   │   test_faddeeva.cpython-310.pyc
│   │   │   │   │   │   │   │   test_gamma.cpython-310.pyc
│   │   │   │   │   │   │   │   test_gammainc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hyp2f1.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hypergeometric.cpython-310.pyc
│   │   │   │   │   │   │   │   test_iv_ratio.cpython-310.pyc
│   │   │   │   │   │   │   │   test_kolmogorov.cpython-310.pyc
│   │   │   │   │   │   │   │   test_lambertw.cpython-310.pyc
│   │   │   │   │   │   │   │   test_legendre.cpython-310.pyc
│   │   │   │   │   │   │   │   test_loggamma.cpython-310.pyc
│   │   │   │   │   │   │   │   test_logit.cpython-310.pyc
│   │   │   │   │   │   │   │   test_logsumexp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_log_softmax.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mpmath.cpython-310.pyc
│   │   │   │   │   │   │   │   test_nan_inputs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ndtr.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ndtri_exp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_orthogonal.cpython-310.pyc
│   │   │   │   │   │   │   │   test_orthogonal_eval.cpython-310.pyc
│   │   │   │   │   │   │   │   test_owens_t.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pcf.cpython-310.pyc
│   │   │   │   │   │   │   │   test_pdtr.cpython-310.pyc
│   │   │   │   │   │   │   │   test_powm1.cpython-310.pyc
│   │   │   │   │   │   │   │   test_precompute_expn_asy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_precompute_gammainc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_precompute_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   test_round.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sf_error.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sici.cpython-310.pyc
│   │   │   │   │   │   │   │   test_specfun.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spence.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spfun_stats.cpython-310.pyc
│   │   │   │   │   │   │   │   test_spherical_bessel.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sph_harm.cpython-310.pyc
│   │   │   │   │   │   │   │   test_support_alternative_backends.cpython-310.pyc
│   │   │   │   │   │   │   │   test_trig.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ufunc_signatures.cpython-310.pyc
│   │   │   │   │   │   │   │   test_wrightomega.cpython-310.pyc
│   │   │   │   │   │   │   │   test_wright_bessel.cpython-310.pyc
│   │   │   │   │   │   │   │   test_xsf_cuda.cpython-310.pyc
│   │   │   │   │   │   │   │   test_zeta.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── xsf/
│   │   │   │   │   │   │   binom.h
│   │   │   │   │   │   │   cdflib.h
│   │   │   │   │   │   │   config.h
│   │   │   │   │   │   │   digamma.h
│   │   │   │   │   │   │   error.h
│   │   │   │   │   │   │   evalpoly.h
│   │   │   │   │   │   │   expint.h
│   │   │   │   │   │   │   hyp2f1.h
│   │   │   │   │   │   │   iv_ratio.h
│   │   │   │   │   │   │   lambertw.h
│   │   │   │   │   │   │   loggamma.h
│   │   │   │   │   │   │   sici.h
│   │   │   │   │   │   │   tools.h
│   │   │   │   │   │   │   trig.h
│   │   │   │   │   │   │   wright_bessel.h
│   │   │   │   │   │   │   zlog1.h
│   │   │   │   │   │   │   ├── cephes/
│   │   │   │   │   │   │   │   airy.h
│   │   │   │   │   │   │   │   besselpoly.h
│   │   │   │   │   │   │   │   beta.h
│   │   │   │   │   │   │   │   cbrt.h
│   │   │   │   │   │   │   │   chbevl.h
│   │   │   │   │   │   │   │   chdtr.h
│   │   │   │   │   │   │   │   const.h
│   │   │   │   │   │   │   │   ellie.h
│   │   │   │   │   │   │   │   ellik.h
│   │   │   │   │   │   │   │   ellpe.h
│   │   │   │   │   │   │   │   ellpk.h
│   │   │   │   │   │   │   │   expn.h
│   │   │   │   │   │   │   │   gamma.h
│   │   │   │   │   │   │   │   hyp2f1.h
│   │   │   │   │   │   │   │   hyperg.h
│   │   │   │   │   │   │   │   i0.h
│   │   │   │   │   │   │   │   i1.h
│   │   │   │   │   │   │   │   igam.h
│   │   │   │   │   │   │   │   igami.h
│   │   │   │   │   │   │   │   igam_asymp_coeff.h
│   │   │   │   │   │   │   │   j0.h
│   │   │   │   │   │   │   │   j1.h
│   │   │   │   │   │   │   │   jv.h
│   │   │   │   │   │   │   │   k0.h
│   │   │   │   │   │   │   │   k1.h
│   │   │   │   │   │   │   │   kn.h
│   │   │   │   │   │   │   │   lanczos.h
│   │   │   │   │   │   │   │   ndtr.h
│   │   │   │   │   │   │   │   poch.h
│   │   │   │   │   │   │   │   polevl.h
│   │   │   │   │   │   │   │   psi.h
│   │   │   │   │   │   │   │   rgamma.h
│   │   │   │   │   │   │   │   scipy_iv.h
│   │   │   │   │   │   │   │   shichi.h
│   │   │   │   │   │   │   │   sici.h
│   │   │   │   │   │   │   │   sindg.h
│   │   │   │   │   │   │   │   tandg.h
│   │   │   │   │   │   │   │   trig.h
│   │   │   │   │   │   │   │   unity.h
│   │   │   │   │   │   │   │   zeta.h
│   │   │   │   │   │   ├── _precompute/
│   │   │   │   │   │   │   cosine_cdf.py
│   │   │   │   │   │   │   expn_asy.py
│   │   │   │   │   │   │   gammainc_asy.py
│   │   │   │   │   │   │   gammainc_data.py
│   │   │   │   │   │   │   hyp2f1_data.py
│   │   │   │   │   │   │   lambertw.py
│   │   │   │   │   │   │   loggamma.py
│   │   │   │   │   │   │   struve_convergence.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   wrightomega.py
│   │   │   │   │   │   │   wright_bessel.py
│   │   │   │   │   │   │   wright_bessel_data.py
│   │   │   │   │   │   │   zetac.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   cosine_cdf.cpython-310.pyc
│   │   │   │   │   │   │   │   expn_asy.cpython-310.pyc
│   │   │   │   │   │   │   │   gammainc_asy.cpython-310.pyc
│   │   │   │   │   │   │   │   gammainc_data.cpython-310.pyc
│   │   │   │   │   │   │   │   hyp2f1_data.cpython-310.pyc
│   │   │   │   │   │   │   │   lambertw.cpython-310.pyc
│   │   │   │   │   │   │   │   loggamma.cpython-310.pyc
│   │   │   │   │   │   │   │   struve_convergence.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   wrightomega.cpython-310.pyc
│   │   │   │   │   │   │   │   wright_bessel.cpython-310.pyc
│   │   │   │   │   │   │   │   wright_bessel_data.cpython-310.pyc
│   │   │   │   │   │   │   │   zetac.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   add_newdocs.cpython-310.pyc
│   │   │   │   │   │   │   basic.cpython-310.pyc
│   │   │   │   │   │   │   orthogonal.cpython-310.pyc
│   │   │   │   │   │   │   sf_error.cpython-310.pyc
│   │   │   │   │   │   │   specfun.cpython-310.pyc
│   │   │   │   │   │   │   spfun_stats.cpython-310.pyc
│   │   │   │   │   │   │   _add_newdocs.cpython-310.pyc
│   │   │   │   │   │   │   _basic.cpython-310.pyc
│   │   │   │   │   │   │   _ellip_harm.cpython-310.pyc
│   │   │   │   │   │   │   _input_validation.cpython-310.pyc
│   │   │   │   │   │   │   _lambertw.cpython-310.pyc
│   │   │   │   │   │   │   _logsumexp.cpython-310.pyc
│   │   │   │   │   │   │   _mptestutils.cpython-310.pyc
│   │   │   │   │   │   │   _multiufuncs.cpython-310.pyc
│   │   │   │   │   │   │   _orthogonal.cpython-310.pyc
│   │   │   │   │   │   │   _sf_error.cpython-310.pyc
│   │   │   │   │   │   │   _spfun_stats.cpython-310.pyc
│   │   │   │   │   │   │   _spherical_bessel.cpython-310.pyc
│   │   │   │   │   │   │   _support_alternative_backends.cpython-310.pyc
│   │   │   │   │   │   │   _testutils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── stats/
│   │   │   │   │   │   biasedurn.py
│   │   │   │   │   │   contingency.py
│   │   │   │   │   │   distributions.py
│   │   │   │   │   │   kde.py
│   │   │   │   │   │   morestats.py
│   │   │   │   │   │   mstats.py
│   │   │   │   │   │   mstats_basic.py
│   │   │   │   │   │   mstats_extras.py
│   │   │   │   │   │   mvn.py
│   │   │   │   │   │   qmc.py
│   │   │   │   │   │   sampling.py
│   │   │   │   │   │   stats.py
│   │   │   │   │   │   _ansari_swilk_statistics.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ansari_swilk_statistics.cp310-win_amd64.pyd
│   │   │   │   │   │   _axis_nan_policy.py
│   │   │   │   │   │   _biasedurn.cp310-win_amd64.dll.a
│   │   │   │   │   │   _biasedurn.cp310-win_amd64.pyd
│   │   │   │   │   │   _biasedurn.pxd
│   │   │   │   │   │   _binned_statistic.py
│   │   │   │   │   │   _binomtest.py
│   │   │   │   │   │   _bws_test.py
│   │   │   │   │   │   _censored_data.py
│   │   │   │   │   │   _common.py
│   │   │   │   │   │   _constants.py
│   │   │   │   │   │   _continuous_distns.py
│   │   │   │   │   │   _correlation.py
│   │   │   │   │   │   _covariance.py
│   │   │   │   │   │   _crosstab.py
│   │   │   │   │   │   _discrete_distns.py
│   │   │   │   │   │   _distn_infrastructure.py
│   │   │   │   │   │   _distribution_infrastructure.py
│   │   │   │   │   │   _distr_params.py
│   │   │   │   │   │   _entropy.py
│   │   │   │   │   │   _fit.py
│   │   │   │   │   │   _hypotests.py
│   │   │   │   │   │   _kde.py
│   │   │   │   │   │   _ksstats.py
│   │   │   │   │   │   _mannwhitneyu.py
│   │   │   │   │   │   _mgc.py
│   │   │   │   │   │   _morestats.py
│   │   │   │   │   │   _mstats_basic.py
│   │   │   │   │   │   _mstats_extras.py
│   │   │   │   │   │   _multicomp.py
│   │   │   │   │   │   _multivariate.py
│   │   │   │   │   │   _mvn.cp310-win_amd64.dll.a
│   │   │   │   │   │   _mvn.cp310-win_amd64.pyd
│   │   │   │   │   │   _new_distributions.py
│   │   │   │   │   │   _odds_ratio.py
│   │   │   │   │   │   _page_trend_test.py
│   │   │   │   │   │   _probability_distribution.py
│   │   │   │   │   │   _qmc.py
│   │   │   │   │   │   _qmc_cy.cp310-win_amd64.dll.a
│   │   │   │   │   │   _qmc_cy.cp310-win_amd64.pyd
│   │   │   │   │   │   _qmc_cy.pyi
│   │   │   │   │   │   _qmvnt.py
│   │   │   │   │   │   _relative_risk.py
│   │   │   │   │   │   _resampling.py
│   │   │   │   │   │   _result_classes.py
│   │   │   │   │   │   _sampling.py
│   │   │   │   │   │   _sensitivity_analysis.py
│   │   │   │   │   │   _sobol.cp310-win_amd64.dll.a
│   │   │   │   │   │   _sobol.cp310-win_amd64.pyd
│   │   │   │   │   │   _sobol.pyi
│   │   │   │   │   │   _sobol_direction_numbers.npz
│   │   │   │   │   │   _stats.cp310-win_amd64.dll.a
│   │   │   │   │   │   _stats.cp310-win_amd64.pyd
│   │   │   │   │   │   _stats.pxd
│   │   │   │   │   │   _stats_mstats_common.py
│   │   │   │   │   │   _stats_py.py
│   │   │   │   │   │   _stats_pythran.cp310-win_amd64.dll.a
│   │   │   │   │   │   _stats_pythran.cp310-win_amd64.pyd
│   │   │   │   │   │   _survival.py
│   │   │   │   │   │   _tukeylambda_stats.py
│   │   │   │   │   │   _variation.py
│   │   │   │   │   │   _warnings_errors.py
│   │   │   │   │   │   _wilcoxon.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   common_tests.py
│   │   │   │   │   │   │   test_axis_nan_policy.py
│   │   │   │   │   │   │   test_binned_statistic.py
│   │   │   │   │   │   │   test_censored_data.py
│   │   │   │   │   │   │   test_contingency.py
│   │   │   │   │   │   │   test_continuous.py
│   │   │   │   │   │   │   test_continuous_basic.py
│   │   │   │   │   │   │   test_continuous_fit_censored.py
│   │   │   │   │   │   │   test_correlation.py
│   │   │   │   │   │   │   test_crosstab.py
│   │   │   │   │   │   │   test_discrete_basic.py
│   │   │   │   │   │   │   test_discrete_distns.py
│   │   │   │   │   │   │   test_distributions.py
│   │   │   │   │   │   │   test_entropy.py
│   │   │   │   │   │   │   test_fast_gen_inversion.py
│   │   │   │   │   │   │   test_fit.py
│   │   │   │   │   │   │   test_hypotests.py
│   │   │   │   │   │   │   test_kdeoth.py
│   │   │   │   │   │   │   test_mgc.py
│   │   │   │   │   │   │   test_morestats.py
│   │   │   │   │   │   │   test_mstats_basic.py
│   │   │   │   │   │   │   test_mstats_extras.py
│   │   │   │   │   │   │   test_multicomp.py
│   │   │   │   │   │   │   test_multivariate.py
│   │   │   │   │   │   │   test_odds_ratio.py
│   │   │   │   │   │   │   test_qmc.py
│   │   │   │   │   │   │   test_rank.py
│   │   │   │   │   │   │   test_relative_risk.py
│   │   │   │   │   │   │   test_resampling.py
│   │   │   │   │   │   │   test_sampling.py
│   │   │   │   │   │   │   test_sensitivity_analysis.py
│   │   │   │   │   │   │   test_stats.py
│   │   │   │   │   │   │   test_survival.py
│   │   │   │   │   │   │   test_tukeylambda_stats.py
│   │   │   │   │   │   │   test_variation.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── data/
│   │   │   │   │   │   │   │   fisher_exact_results_from_r.py
│   │   │   │   │   │   │   │   jf_skew_t_gamlss_pdf_data.npy
│   │   │   │   │   │   │   │   rel_breitwigner_pdf_sample_data_ROOT.npy
│   │   │   │   │   │   │   │   studentized_range_mpmath_ref.json
│   │   │   │   │   │   │   │   _mvt.py
│   │   │   │   │   │   │   │   ├── levy_stable/
│   │   │   │   │   │   │   │   │   stable-loc-scale-sample-data.npy
│   │   │   │   │   │   │   │   │   stable-Z1-cdf-sample-data.npy
│   │   │   │   │   │   │   │   │   stable-Z1-pdf-sample-data.npy
│   │   │   │   │   │   │   │   ├── nist_anova/
│   │   │   │   │   │   │   │   │   AtmWtAg.dat
│   │   │   │   │   │   │   │   │   SiRstv.dat
│   │   │   │   │   │   │   │   │   SmLs01.dat
│   │   │   │   │   │   │   │   │   SmLs02.dat
│   │   │   │   │   │   │   │   │   SmLs03.dat
│   │   │   │   │   │   │   │   │   SmLs04.dat
│   │   │   │   │   │   │   │   │   SmLs05.dat
│   │   │   │   │   │   │   │   │   SmLs06.dat
│   │   │   │   │   │   │   │   │   SmLs07.dat
│   │   │   │   │   │   │   │   │   SmLs08.dat
│   │   │   │   │   │   │   │   │   SmLs09.dat
│   │   │   │   │   │   │   │   ├── nist_linregress/
│   │   │   │   │   │   │   │   │   Norris.dat
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   fisher_exact_results_from_r.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _mvt.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common_tests.cpython-310.pyc
│   │   │   │   │   │   │   │   test_axis_nan_policy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_binned_statistic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_censored_data.cpython-310.pyc
│   │   │   │   │   │   │   │   test_contingency.cpython-310.pyc
│   │   │   │   │   │   │   │   test_continuous.cpython-310.pyc
│   │   │   │   │   │   │   │   test_continuous_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_continuous_fit_censored.cpython-310.pyc
│   │   │   │   │   │   │   │   test_correlation.cpython-310.pyc
│   │   │   │   │   │   │   │   test_crosstab.cpython-310.pyc
│   │   │   │   │   │   │   │   test_discrete_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_discrete_distns.cpython-310.pyc
│   │   │   │   │   │   │   │   test_distributions.cpython-310.pyc
│   │   │   │   │   │   │   │   test_entropy.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fast_gen_inversion.cpython-310.pyc
│   │   │   │   │   │   │   │   test_fit.cpython-310.pyc
│   │   │   │   │   │   │   │   test_hypotests.cpython-310.pyc
│   │   │   │   │   │   │   │   test_kdeoth.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mgc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_morestats.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mstats_basic.cpython-310.pyc
│   │   │   │   │   │   │   │   test_mstats_extras.cpython-310.pyc
│   │   │   │   │   │   │   │   test_multicomp.cpython-310.pyc
│   │   │   │   │   │   │   │   test_multivariate.cpython-310.pyc
│   │   │   │   │   │   │   │   test_odds_ratio.cpython-310.pyc
│   │   │   │   │   │   │   │   test_qmc.cpython-310.pyc
│   │   │   │   │   │   │   │   test_rank.cpython-310.pyc
│   │   │   │   │   │   │   │   test_relative_risk.cpython-310.pyc
│   │   │   │   │   │   │   │   test_resampling.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sampling.cpython-310.pyc
│   │   │   │   │   │   │   │   test_sensitivity_analysis.cpython-310.pyc
│   │   │   │   │   │   │   │   test_stats.cpython-310.pyc
│   │   │   │   │   │   │   │   test_survival.cpython-310.pyc
│   │   │   │   │   │   │   │   test_tukeylambda_stats.cpython-310.pyc
│   │   │   │   │   │   │   │   test_variation.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _levy_stable/
│   │   │   │   │   │   │   levyst.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   levyst.cp310-win_amd64.pyd
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _rcont/
│   │   │   │   │   │   │   rcont.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   rcont.cp310-win_amd64.pyd
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _unuran/
│   │   │   │   │   │   │   unuran_wrapper.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   unuran_wrapper.cp310-win_amd64.pyd
│   │   │   │   │   │   │   unuran_wrapper.pyi
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   biasedurn.cpython-310.pyc
│   │   │   │   │   │   │   contingency.cpython-310.pyc
│   │   │   │   │   │   │   distributions.cpython-310.pyc
│   │   │   │   │   │   │   kde.cpython-310.pyc
│   │   │   │   │   │   │   morestats.cpython-310.pyc
│   │   │   │   │   │   │   mstats.cpython-310.pyc
│   │   │   │   │   │   │   mstats_basic.cpython-310.pyc
│   │   │   │   │   │   │   mstats_extras.cpython-310.pyc
│   │   │   │   │   │   │   mvn.cpython-310.pyc
│   │   │   │   │   │   │   qmc.cpython-310.pyc
│   │   │   │   │   │   │   sampling.cpython-310.pyc
│   │   │   │   │   │   │   stats.cpython-310.pyc
│   │   │   │   │   │   │   _axis_nan_policy.cpython-310.pyc
│   │   │   │   │   │   │   _binned_statistic.cpython-310.pyc
│   │   │   │   │   │   │   _binomtest.cpython-310.pyc
│   │   │   │   │   │   │   _bws_test.cpython-310.pyc
│   │   │   │   │   │   │   _censored_data.cpython-310.pyc
│   │   │   │   │   │   │   _common.cpython-310.pyc
│   │   │   │   │   │   │   _constants.cpython-310.pyc
│   │   │   │   │   │   │   _continuous_distns.cpython-310.pyc
│   │   │   │   │   │   │   _correlation.cpython-310.pyc
│   │   │   │   │   │   │   _covariance.cpython-310.pyc
│   │   │   │   │   │   │   _crosstab.cpython-310.pyc
│   │   │   │   │   │   │   _discrete_distns.cpython-310.pyc
│   │   │   │   │   │   │   _distn_infrastructure.cpython-310.pyc
│   │   │   │   │   │   │   _distribution_infrastructure.cpython-310.pyc
│   │   │   │   │   │   │   _distr_params.cpython-310.pyc
│   │   │   │   │   │   │   _entropy.cpython-310.pyc
│   │   │   │   │   │   │   _fit.cpython-310.pyc
│   │   │   │   │   │   │   _hypotests.cpython-310.pyc
│   │   │   │   │   │   │   _kde.cpython-310.pyc
│   │   │   │   │   │   │   _ksstats.cpython-310.pyc
│   │   │   │   │   │   │   _mannwhitneyu.cpython-310.pyc
│   │   │   │   │   │   │   _mgc.cpython-310.pyc
│   │   │   │   │   │   │   _morestats.cpython-310.pyc
│   │   │   │   │   │   │   _mstats_basic.cpython-310.pyc
│   │   │   │   │   │   │   _mstats_extras.cpython-310.pyc
│   │   │   │   │   │   │   _multicomp.cpython-310.pyc
│   │   │   │   │   │   │   _multivariate.cpython-310.pyc
│   │   │   │   │   │   │   _new_distributions.cpython-310.pyc
│   │   │   │   │   │   │   _odds_ratio.cpython-310.pyc
│   │   │   │   │   │   │   _page_trend_test.cpython-310.pyc
│   │   │   │   │   │   │   _probability_distribution.cpython-310.pyc
│   │   │   │   │   │   │   _qmc.cpython-310.pyc
│   │   │   │   │   │   │   _qmvnt.cpython-310.pyc
│   │   │   │   │   │   │   _relative_risk.cpython-310.pyc
│   │   │   │   │   │   │   _resampling.cpython-310.pyc
│   │   │   │   │   │   │   _result_classes.cpython-310.pyc
│   │   │   │   │   │   │   _sampling.cpython-310.pyc
│   │   │   │   │   │   │   _sensitivity_analysis.cpython-310.pyc
│   │   │   │   │   │   │   _stats_mstats_common.cpython-310.pyc
│   │   │   │   │   │   │   _stats_py.cpython-310.pyc
│   │   │   │   │   │   │   _survival.cpython-310.pyc
│   │   │   │   │   │   │   _tukeylambda_stats.cpython-310.pyc
│   │   │   │   │   │   │   _variation.cpython-310.pyc
│   │   │   │   │   │   │   _warnings_errors.cpython-310.pyc
│   │   │   │   │   │   │   _wilcoxon.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _lib/
│   │   │   │   │   │   decorator.py
│   │   │   │   │   │   deprecation.py
│   │   │   │   │   │   doccer.py
│   │   │   │   │   │   messagestream.cp310-win_amd64.dll.a
│   │   │   │   │   │   messagestream.cp310-win_amd64.pyd
│   │   │   │   │   │   uarray.py
│   │   │   │   │   │   _array_api.py
│   │   │   │   │   │   _array_api_no_0d.py
│   │   │   │   │   │   _bunch.py
│   │   │   │   │   │   _ccallback.py
│   │   │   │   │   │   _ccallback_c.cp310-win_amd64.dll.a
│   │   │   │   │   │   _ccallback_c.cp310-win_amd64.pyd
│   │   │   │   │   │   _disjoint_set.py
│   │   │   │   │   │   _docscrape.py
│   │   │   │   │   │   _elementwise_iterative_method.py
│   │   │   │   │   │   _finite_differences.py
│   │   │   │   │   │   _fpumode.cp310-win_amd64.dll.a
│   │   │   │   │   │   _fpumode.cp310-win_amd64.pyd
│   │   │   │   │   │   _gcutils.py
│   │   │   │   │   │   _pep440.py
│   │   │   │   │   │   _testutils.py
│   │   │   │   │   │   _test_ccallback.cp310-win_amd64.dll.a
│   │   │   │   │   │   _test_ccallback.cp310-win_amd64.pyd
│   │   │   │   │   │   _test_deprecation_call.cp310-win_amd64.dll.a
│   │   │   │   │   │   _test_deprecation_call.cp310-win_amd64.pyd
│   │   │   │   │   │   _test_deprecation_def.cp310-win_amd64.dll.a
│   │   │   │   │   │   _test_deprecation_def.cp310-win_amd64.pyd
│   │   │   │   │   │   _threadsafety.py
│   │   │   │   │   │   _tmpdirs.py
│   │   │   │   │   │   _util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── array_api_compat/
│   │   │   │   │   │   │   _internal.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── common/
│   │   │   │   │   │   │   │   _aliases.py
│   │   │   │   │   │   │   │   _fft.py
│   │   │   │   │   │   │   │   _helpers.py
│   │   │   │   │   │   │   │   _linalg.py
│   │   │   │   │   │   │   │   _typing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   _aliases.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _fft.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _helpers.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _linalg.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── cupy/
│   │   │   │   │   │   │   │   fft.py
│   │   │   │   │   │   │   │   linalg.py
│   │   │   │   │   │   │   │   _aliases.py
│   │   │   │   │   │   │   │   _info.py
│   │   │   │   │   │   │   │   _typing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   fft.cpython-310.pyc
│   │   │   │   │   │   │   │   │   linalg.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _aliases.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _info.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── dask/
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── array/
│   │   │   │   │   │   │   │   │   fft.py
│   │   │   │   │   │   │   │   │   linalg.py
│   │   │   │   │   │   │   │   │   _aliases.py
│   │   │   │   │   │   │   │   │   _info.py
│   │   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   │   fft.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   linalg.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _aliases.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   _info.cpython-310.pyc
│   │   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── numpy/
│   │   │   │   │   │   │   │   fft.py
│   │   │   │   │   │   │   │   linalg.py
│   │   │   │   │   │   │   │   _aliases.py
│   │   │   │   │   │   │   │   _info.py
│   │   │   │   │   │   │   │   _typing.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   fft.cpython-310.pyc
│   │   │   │   │   │   │   │   │   linalg.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _aliases.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _info.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── torch/
│   │   │   │   │   │   │   │   fft.py
│   │   │   │   │   │   │   │   linalg.py
│   │   │   │   │   │   │   │   _aliases.py
│   │   │   │   │   │   │   │   _info.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   fft.cpython-310.pyc
│   │   │   │   │   │   │   │   │   linalg.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _aliases.cpython-310.pyc
│   │   │   │   │   │   │   │   │   _info.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _internal.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── array_api_extra/
│   │   │   │   │   │   │   _funcs.py
│   │   │   │   │   │   │   _typing.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _funcs.cpython-310.pyc
│   │   │   │   │   │   │   │   _typing.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── cobyqa/
│   │   │   │   │   │   │   framework.py
│   │   │   │   │   │   │   main.py
│   │   │   │   │   │   │   models.py
│   │   │   │   │   │   │   problem.py
│   │   │   │   │   │   │   settings.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── subsolvers/
│   │   │   │   │   │   │   │   geometry.py
│   │   │   │   │   │   │   │   optim.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   geometry.cpython-310.pyc
│   │   │   │   │   │   │   │   │   optim.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── utils/
│   │   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   │   math.py
│   │   │   │   │   │   │   │   versions.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   math.cpython-310.pyc
│   │   │   │   │   │   │   │   │   versions.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   framework.cpython-310.pyc
│   │   │   │   │   │   │   │   main.cpython-310.pyc
│   │   │   │   │   │   │   │   models.cpython-310.pyc
│   │   │   │   │   │   │   │   problem.cpython-310.pyc
│   │   │   │   │   │   │   │   settings.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tests/
│   │   │   │   │   │   │   test_array_api.py
│   │   │   │   │   │   │   test_bunch.py
│   │   │   │   │   │   │   test_ccallback.py
│   │   │   │   │   │   │   test_config.py
│   │   │   │   │   │   │   test_deprecation.py
│   │   │   │   │   │   │   test_doccer.py
│   │   │   │   │   │   │   test_import_cycles.py
│   │   │   │   │   │   │   test_public_api.py
│   │   │   │   │   │   │   test_scipy_version.py
│   │   │   │   │   │   │   test_tmpdirs.py
│   │   │   │   │   │   │   test_warnings.py
│   │   │   │   │   │   │   test__gcutils.py
│   │   │   │   │   │   │   test__pep440.py
│   │   │   │   │   │   │   test__testutils.py
│   │   │   │   │   │   │   test__threadsafety.py
│   │   │   │   │   │   │   test__util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   test_array_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_bunch.cpython-310.pyc
│   │   │   │   │   │   │   │   test_ccallback.cpython-310.pyc
│   │   │   │   │   │   │   │   test_config.cpython-310.pyc
│   │   │   │   │   │   │   │   test_deprecation.cpython-310.pyc
│   │   │   │   │   │   │   │   test_doccer.cpython-310.pyc
│   │   │   │   │   │   │   │   test_import_cycles.cpython-310.pyc
│   │   │   │   │   │   │   │   test_public_api.cpython-310.pyc
│   │   │   │   │   │   │   │   test_scipy_version.cpython-310.pyc
│   │   │   │   │   │   │   │   test_tmpdirs.cpython-310.pyc
│   │   │   │   │   │   │   │   test_warnings.cpython-310.pyc
│   │   │   │   │   │   │   │   test__gcutils.cpython-310.pyc
│   │   │   │   │   │   │   │   test__pep440.cpython-310.pyc
│   │   │   │   │   │   │   │   test__testutils.cpython-310.pyc
│   │   │   │   │   │   │   │   test__threadsafety.cpython-310.pyc
│   │   │   │   │   │   │   │   test__util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── _uarray/
│   │   │   │   │   │   │   LICENSE
│   │   │   │   │   │   │   _backend.py
│   │   │   │   │   │   │   _uarray.cp310-win_amd64.dll.a
│   │   │   │   │   │   │   _uarray.cp310-win_amd64.pyd
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _backend.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   decorator.cpython-310.pyc
│   │   │   │   │   │   │   deprecation.cpython-310.pyc
│   │   │   │   │   │   │   doccer.cpython-310.pyc
│   │   │   │   │   │   │   uarray.cpython-310.pyc
│   │   │   │   │   │   │   _array_api.cpython-310.pyc
│   │   │   │   │   │   │   _array_api_no_0d.cpython-310.pyc
│   │   │   │   │   │   │   _bunch.cpython-310.pyc
│   │   │   │   │   │   │   _ccallback.cpython-310.pyc
│   │   │   │   │   │   │   _disjoint_set.cpython-310.pyc
│   │   │   │   │   │   │   _docscrape.cpython-310.pyc
│   │   │   │   │   │   │   _elementwise_iterative_method.cpython-310.pyc
│   │   │   │   │   │   │   _finite_differences.cpython-310.pyc
│   │   │   │   │   │   │   _gcutils.cpython-310.pyc
│   │   │   │   │   │   │   _pep440.cpython-310.pyc
│   │   │   │   │   │   │   _testutils.cpython-310.pyc
│   │   │   │   │   │   │   _threadsafety.cpython-310.pyc
│   │   │   │   │   │   │   _tmpdirs.cpython-310.pyc
│   │   │   │   │   │   │   _util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   conftest.cpython-310.pyc
│   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   _distributor_init.cpython-310.pyc
│   │   │   │   │   │   __config__.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── scipy-1.15.3.dist-info/
│   │   │   │   │   DELVEWHEEL
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE.txt
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   WHEEL
│   │   │   │   ├── scipy.libs/
│   │   │   │   │   libscipy_openblas-f07f5a5d207a3a47104dca54d6d0c86a.dll
│   │   │   │   ├── setuptools/
│   │   │   │   │   archive_util.py
│   │   │   │   │   build_meta.py
│   │   │   │   │   cli-32.exe
│   │   │   │   │   cli-64.exe
│   │   │   │   │   cli-arm64.exe
│   │   │   │   │   cli.exe
│   │   │   │   │   depends.py
│   │   │   │   │   dep_util.py
│   │   │   │   │   discovery.py
│   │   │   │   │   dist.py
│   │   │   │   │   errors.py
│   │   │   │   │   extension.py
│   │   │   │   │   glob.py
│   │   │   │   │   gui-32.exe
│   │   │   │   │   gui-64.exe
│   │   │   │   │   gui-arm64.exe
│   │   │   │   │   gui.exe
│   │   │   │   │   installer.py
│   │   │   │   │   launch.py
│   │   │   │   │   logging.py
│   │   │   │   │   monkey.py
│   │   │   │   │   msvc.py
│   │   │   │   │   namespaces.py
│   │   │   │   │   package_index.py
│   │   │   │   │   py34compat.py
│   │   │   │   │   sandbox.py
│   │   │   │   │   script (dev).tmpl
│   │   │   │   │   script.tmpl
│   │   │   │   │   unicode_utils.py
│   │   │   │   │   version.py
│   │   │   │   │   wheel.py
│   │   │   │   │   windows_support.py
│   │   │   │   │   _deprecation_warning.py
│   │   │   │   │   _entry_points.py
│   │   │   │   │   _imp.py
│   │   │   │   │   _importlib.py
│   │   │   │   │   _itertools.py
│   │   │   │   │   _path.py
│   │   │   │   │   _reqs.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── command/
│   │   │   │   │   │   alias.py
│   │   │   │   │   │   bdist_egg.py
│   │   │   │   │   │   bdist_rpm.py
│   │   │   │   │   │   build.py
│   │   │   │   │   │   build_clib.py
│   │   │   │   │   │   build_ext.py
│   │   │   │   │   │   build_py.py
│   │   │   │   │   │   develop.py
│   │   │   │   │   │   dist_info.py
│   │   │   │   │   │   easy_install.py
│   │   │   │   │   │   editable_wheel.py
│   │   │   │   │   │   egg_info.py
│   │   │   │   │   │   install.py
│   │   │   │   │   │   install_egg_info.py
│   │   │   │   │   │   install_lib.py
│   │   │   │   │   │   install_scripts.py
│   │   │   │   │   │   launcher manifest.xml
│   │   │   │   │   │   py36compat.py
│   │   │   │   │   │   register.py
│   │   │   │   │   │   rotate.py
│   │   │   │   │   │   saveopts.py
│   │   │   │   │   │   sdist.py
│   │   │   │   │   │   setopt.py
│   │   │   │   │   │   test.py
│   │   │   │   │   │   upload.py
│   │   │   │   │   │   upload_docs.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   alias.cpython-310.pyc
│   │   │   │   │   │   │   bdist_egg.cpython-310.pyc
│   │   │   │   │   │   │   bdist_rpm.cpython-310.pyc
│   │   │   │   │   │   │   build.cpython-310.pyc
│   │   │   │   │   │   │   build_clib.cpython-310.pyc
│   │   │   │   │   │   │   build_ext.cpython-310.pyc
│   │   │   │   │   │   │   build_py.cpython-310.pyc
│   │   │   │   │   │   │   develop.cpython-310.pyc
│   │   │   │   │   │   │   dist_info.cpython-310.pyc
│   │   │   │   │   │   │   easy_install.cpython-310.pyc
│   │   │   │   │   │   │   editable_wheel.cpython-310.pyc
│   │   │   │   │   │   │   egg_info.cpython-310.pyc
│   │   │   │   │   │   │   install.cpython-310.pyc
│   │   │   │   │   │   │   install_egg_info.cpython-310.pyc
│   │   │   │   │   │   │   install_lib.cpython-310.pyc
│   │   │   │   │   │   │   install_scripts.cpython-310.pyc
│   │   │   │   │   │   │   py36compat.cpython-310.pyc
│   │   │   │   │   │   │   register.cpython-310.pyc
│   │   │   │   │   │   │   rotate.cpython-310.pyc
│   │   │   │   │   │   │   saveopts.cpython-310.pyc
│   │   │   │   │   │   │   sdist.cpython-310.pyc
│   │   │   │   │   │   │   setopt.cpython-310.pyc
│   │   │   │   │   │   │   test.cpython-310.pyc
│   │   │   │   │   │   │   upload.cpython-310.pyc
│   │   │   │   │   │   │   upload_docs.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── config/
│   │   │   │   │   │   expand.py
│   │   │   │   │   │   pyprojecttoml.py
│   │   │   │   │   │   setupcfg.py
│   │   │   │   │   │   _apply_pyprojecttoml.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── _validate_pyproject/
│   │   │   │   │   │   │   error_reporting.py
│   │   │   │   │   │   │   extra_validations.py
│   │   │   │   │   │   │   fastjsonschema_exceptions.py
│   │   │   │   │   │   │   fastjsonschema_validations.py
│   │   │   │   │   │   │   formats.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   error_reporting.cpython-310.pyc
│   │   │   │   │   │   │   │   extra_validations.cpython-310.pyc
│   │   │   │   │   │   │   │   fastjsonschema_exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   fastjsonschema_validations.cpython-310.pyc
│   │   │   │   │   │   │   │   formats.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   expand.cpython-310.pyc
│   │   │   │   │   │   │   pyprojecttoml.cpython-310.pyc
│   │   │   │   │   │   │   setupcfg.cpython-310.pyc
│   │   │   │   │   │   │   _apply_pyprojecttoml.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── extern/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _distutils/
│   │   │   │   │   │   archive_util.py
│   │   │   │   │   │   bcppcompiler.py
│   │   │   │   │   │   ccompiler.py
│   │   │   │   │   │   cmd.py
│   │   │   │   │   │   config.py
│   │   │   │   │   │   core.py
│   │   │   │   │   │   cygwinccompiler.py
│   │   │   │   │   │   debug.py
│   │   │   │   │   │   dep_util.py
│   │   │   │   │   │   dir_util.py
│   │   │   │   │   │   dist.py
│   │   │   │   │   │   errors.py
│   │   │   │   │   │   extension.py
│   │   │   │   │   │   fancy_getopt.py
│   │   │   │   │   │   filelist.py
│   │   │   │   │   │   file_util.py
│   │   │   │   │   │   log.py
│   │   │   │   │   │   msvc9compiler.py
│   │   │   │   │   │   msvccompiler.py
│   │   │   │   │   │   py38compat.py
│   │   │   │   │   │   py39compat.py
│   │   │   │   │   │   spawn.py
│   │   │   │   │   │   sysconfig.py
│   │   │   │   │   │   text_file.py
│   │   │   │   │   │   unixccompiler.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   version.py
│   │   │   │   │   │   versionpredicate.py
│   │   │   │   │   │   _collections.py
│   │   │   │   │   │   _functools.py
│   │   │   │   │   │   _macos_compat.py
│   │   │   │   │   │   _msvccompiler.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── command/
│   │   │   │   │   │   │   bdist.py
│   │   │   │   │   │   │   bdist_dumb.py
│   │   │   │   │   │   │   bdist_rpm.py
│   │   │   │   │   │   │   build.py
│   │   │   │   │   │   │   build_clib.py
│   │   │   │   │   │   │   build_ext.py
│   │   │   │   │   │   │   build_py.py
│   │   │   │   │   │   │   build_scripts.py
│   │   │   │   │   │   │   check.py
│   │   │   │   │   │   │   clean.py
│   │   │   │   │   │   │   config.py
│   │   │   │   │   │   │   install.py
│   │   │   │   │   │   │   install_data.py
│   │   │   │   │   │   │   install_egg_info.py
│   │   │   │   │   │   │   install_headers.py
│   │   │   │   │   │   │   install_lib.py
│   │   │   │   │   │   │   install_scripts.py
│   │   │   │   │   │   │   py37compat.py
│   │   │   │   │   │   │   register.py
│   │   │   │   │   │   │   sdist.py
│   │   │   │   │   │   │   upload.py
│   │   │   │   │   │   │   _framework_compat.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   bdist.cpython-310.pyc
│   │   │   │   │   │   │   │   bdist_dumb.cpython-310.pyc
│   │   │   │   │   │   │   │   bdist_rpm.cpython-310.pyc
│   │   │   │   │   │   │   │   build.cpython-310.pyc
│   │   │   │   │   │   │   │   build_clib.cpython-310.pyc
│   │   │   │   │   │   │   │   build_ext.cpython-310.pyc
│   │   │   │   │   │   │   │   build_py.cpython-310.pyc
│   │   │   │   │   │   │   │   build_scripts.cpython-310.pyc
│   │   │   │   │   │   │   │   check.cpython-310.pyc
│   │   │   │   │   │   │   │   clean.cpython-310.pyc
│   │   │   │   │   │   │   │   config.cpython-310.pyc
│   │   │   │   │   │   │   │   install.cpython-310.pyc
│   │   │   │   │   │   │   │   install_data.cpython-310.pyc
│   │   │   │   │   │   │   │   install_egg_info.cpython-310.pyc
│   │   │   │   │   │   │   │   install_headers.cpython-310.pyc
│   │   │   │   │   │   │   │   install_lib.cpython-310.pyc
│   │   │   │   │   │   │   │   install_scripts.cpython-310.pyc
│   │   │   │   │   │   │   │   py37compat.cpython-310.pyc
│   │   │   │   │   │   │   │   register.cpython-310.pyc
│   │   │   │   │   │   │   │   sdist.cpython-310.pyc
│   │   │   │   │   │   │   │   upload.cpython-310.pyc
│   │   │   │   │   │   │   │   _framework_compat.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   archive_util.cpython-310.pyc
│   │   │   │   │   │   │   bcppcompiler.cpython-310.pyc
│   │   │   │   │   │   │   ccompiler.cpython-310.pyc
│   │   │   │   │   │   │   cmd.cpython-310.pyc
│   │   │   │   │   │   │   config.cpython-310.pyc
│   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   cygwinccompiler.cpython-310.pyc
│   │   │   │   │   │   │   debug.cpython-310.pyc
│   │   │   │   │   │   │   dep_util.cpython-310.pyc
│   │   │   │   │   │   │   dir_util.cpython-310.pyc
│   │   │   │   │   │   │   dist.cpython-310.pyc
│   │   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   │   extension.cpython-310.pyc
│   │   │   │   │   │   │   fancy_getopt.cpython-310.pyc
│   │   │   │   │   │   │   filelist.cpython-310.pyc
│   │   │   │   │   │   │   file_util.cpython-310.pyc
│   │   │   │   │   │   │   log.cpython-310.pyc
│   │   │   │   │   │   │   msvc9compiler.cpython-310.pyc
│   │   │   │   │   │   │   msvccompiler.cpython-310.pyc
│   │   │   │   │   │   │   py38compat.cpython-310.pyc
│   │   │   │   │   │   │   py39compat.cpython-310.pyc
│   │   │   │   │   │   │   spawn.cpython-310.pyc
│   │   │   │   │   │   │   sysconfig.cpython-310.pyc
│   │   │   │   │   │   │   text_file.cpython-310.pyc
│   │   │   │   │   │   │   unixccompiler.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   │   versionpredicate.cpython-310.pyc
│   │   │   │   │   │   │   _collections.cpython-310.pyc
│   │   │   │   │   │   │   _functools.cpython-310.pyc
│   │   │   │   │   │   │   _macos_compat.cpython-310.pyc
│   │   │   │   │   │   │   _msvccompiler.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── _vendor/
│   │   │   │   │   │   ordered_set.py
│   │   │   │   │   │   typing_extensions.py
│   │   │   │   │   │   zipp.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── importlib_metadata/
│   │   │   │   │   │   │   _adapters.py
│   │   │   │   │   │   │   _collections.py
│   │   │   │   │   │   │   _compat.py
│   │   │   │   │   │   │   _functools.py
│   │   │   │   │   │   │   _itertools.py
│   │   │   │   │   │   │   _meta.py
│   │   │   │   │   │   │   _text.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _adapters.cpython-310.pyc
│   │   │   │   │   │   │   │   _collections.cpython-310.pyc
│   │   │   │   │   │   │   │   _compat.cpython-310.pyc
│   │   │   │   │   │   │   │   _functools.cpython-310.pyc
│   │   │   │   │   │   │   │   _itertools.cpython-310.pyc
│   │   │   │   │   │   │   │   _meta.cpython-310.pyc
│   │   │   │   │   │   │   │   _text.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── importlib_resources/
│   │   │   │   │   │   │   abc.py
│   │   │   │   │   │   │   readers.py
│   │   │   │   │   │   │   simple.py
│   │   │   │   │   │   │   _adapters.py
│   │   │   │   │   │   │   _common.py
│   │   │   │   │   │   │   _compat.py
│   │   │   │   │   │   │   _itertools.py
│   │   │   │   │   │   │   _legacy.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   abc.cpython-310.pyc
│   │   │   │   │   │   │   │   readers.cpython-310.pyc
│   │   │   │   │   │   │   │   simple.cpython-310.pyc
│   │   │   │   │   │   │   │   _adapters.cpython-310.pyc
│   │   │   │   │   │   │   │   _common.cpython-310.pyc
│   │   │   │   │   │   │   │   _compat.cpython-310.pyc
│   │   │   │   │   │   │   │   _itertools.cpython-310.pyc
│   │   │   │   │   │   │   │   _legacy.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── jaraco/
│   │   │   │   │   │   │   context.py
│   │   │   │   │   │   │   functools.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── text/
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   context.cpython-310.pyc
│   │   │   │   │   │   │   │   functools.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── more_itertools/
│   │   │   │   │   │   │   more.py
│   │   │   │   │   │   │   recipes.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   more.cpython-310.pyc
│   │   │   │   │   │   │   │   recipes.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── packaging/
│   │   │   │   │   │   │   markers.py
│   │   │   │   │   │   │   requirements.py
│   │   │   │   │   │   │   specifiers.py
│   │   │   │   │   │   │   tags.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   version.py
│   │   │   │   │   │   │   _manylinux.py
│   │   │   │   │   │   │   _musllinux.py
│   │   │   │   │   │   │   _structures.py
│   │   │   │   │   │   │   __about__.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   markers.cpython-310.pyc
│   │   │   │   │   │   │   │   requirements.cpython-310.pyc
│   │   │   │   │   │   │   │   specifiers.cpython-310.pyc
│   │   │   │   │   │   │   │   tags.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   │   │   _manylinux.cpython-310.pyc
│   │   │   │   │   │   │   │   _musllinux.cpython-310.pyc
│   │   │   │   │   │   │   │   _structures.cpython-310.pyc
│   │   │   │   │   │   │   │   __about__.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── pyparsing/
│   │   │   │   │   │   │   actions.py
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   core.py
│   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   helpers.py
│   │   │   │   │   │   │   results.py
│   │   │   │   │   │   │   testing.py
│   │   │   │   │   │   │   unicode.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── diagram/
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   actions.cpython-310.pyc
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   core.cpython-310.pyc
│   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   helpers.cpython-310.pyc
│   │   │   │   │   │   │   │   results.cpython-310.pyc
│   │   │   │   │   │   │   │   testing.cpython-310.pyc
│   │   │   │   │   │   │   │   unicode.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── tomli/
│   │   │   │   │   │   │   _parser.py
│   │   │   │   │   │   │   _re.py
│   │   │   │   │   │   │   _types.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   _parser.cpython-310.pyc
│   │   │   │   │   │   │   │   _re.cpython-310.pyc
│   │   │   │   │   │   │   │   _types.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   ordered_set.cpython-310.pyc
│   │   │   │   │   │   │   typing_extensions.cpython-310.pyc
│   │   │   │   │   │   │   zipp.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   archive_util.cpython-310.pyc
│   │   │   │   │   │   build_meta.cpython-310.pyc
│   │   │   │   │   │   depends.cpython-310.pyc
│   │   │   │   │   │   dep_util.cpython-310.pyc
│   │   │   │   │   │   discovery.cpython-310.pyc
│   │   │   │   │   │   dist.cpython-310.pyc
│   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   extension.cpython-310.pyc
│   │   │   │   │   │   glob.cpython-310.pyc
│   │   │   │   │   │   installer.cpython-310.pyc
│   │   │   │   │   │   launch.cpython-310.pyc
│   │   │   │   │   │   logging.cpython-310.pyc
│   │   │   │   │   │   monkey.cpython-310.pyc
│   │   │   │   │   │   msvc.cpython-310.pyc
│   │   │   │   │   │   namespaces.cpython-310.pyc
│   │   │   │   │   │   package_index.cpython-310.pyc
│   │   │   │   │   │   py34compat.cpython-310.pyc
│   │   │   │   │   │   sandbox.cpython-310.pyc
│   │   │   │   │   │   unicode_utils.cpython-310.pyc
│   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   wheel.cpython-310.pyc
│   │   │   │   │   │   windows_support.cpython-310.pyc
│   │   │   │   │   │   _deprecation_warning.cpython-310.pyc
│   │   │   │   │   │   _entry_points.cpython-310.pyc
│   │   │   │   │   │   _imp.cpython-310.pyc
│   │   │   │   │   │   _importlib.cpython-310.pyc
│   │   │   │   │   │   _itertools.cpython-310.pyc
│   │   │   │   │   │   _path.cpython-310.pyc
│   │   │   │   │   │   _reqs.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── setuptools-65.5.0.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── six-1.17.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── smmap/
│   │   │   │   │   buf.py
│   │   │   │   │   mman.py
│   │   │   │   │   util.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── test/
│   │   │   │   │   │   lib.py
│   │   │   │   │   │   test_buf.py
│   │   │   │   │   │   test_mman.py
│   │   │   │   │   │   test_tutorial.py
│   │   │   │   │   │   test_util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   lib.cpython-310.pyc
│   │   │   │   │   │   │   test_buf.cpython-310.pyc
│   │   │   │   │   │   │   test_mman.cpython-310.pyc
│   │   │   │   │   │   │   test_tutorial.cpython-310.pyc
│   │   │   │   │   │   │   test_util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   buf.cpython-310.pyc
│   │   │   │   │   │   mman.cpython-310.pyc
│   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── smmap-5.0.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   zip-safe
│   │   │   │   ├── streamlit/
│   │   │   │   │   auth_util.py
│   │   │   │   │   cli_util.py
│   │   │   │   │   column_config.py
│   │   │   │   │   config.py
│   │   │   │   │   config_option.py
│   │   │   │   │   config_util.py
│   │   │   │   │   cursor.py
│   │   │   │   │   dataframe_util.py
│   │   │   │   │   delta_generator.py
│   │   │   │   │   delta_generator_singletons.py
│   │   │   │   │   deprecation_util.py
│   │   │   │   │   development.py
│   │   │   │   │   emojis.py
│   │   │   │   │   env_util.py
│   │   │   │   │   errors.py
│   │   │   │   │   error_util.py
│   │   │   │   │   file_util.py
│   │   │   │   │   git_util.py
│   │   │   │   │   logger.py
│   │   │   │   │   material_icon_names.py
│   │   │   │   │   net_util.py
│   │   │   │   │   platform.py
│   │   │   │   │   py.typed
│   │   │   │   │   source_util.py
│   │   │   │   │   string_util.py
│   │   │   │   │   temporary_directory.py
│   │   │   │   │   time_util.py
│   │   │   │   │   type_util.py
│   │   │   │   │   url_util.py
│   │   │   │   │   user_info.py
│   │   │   │   │   util.py
│   │   │   │   │   version.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __main__.py
│   │   │   │   │   ├── commands/
│   │   │   │   │   │   echo.py
│   │   │   │   │   │   execution_control.py
│   │   │   │   │   │   experimental_query_params.py
│   │   │   │   │   │   logo.py
│   │   │   │   │   │   navigation.py
│   │   │   │   │   │   page_config.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   echo.cpython-310.pyc
│   │   │   │   │   │   │   execution_control.cpython-310.pyc
│   │   │   │   │   │   │   experimental_query_params.cpython-310.pyc
│   │   │   │   │   │   │   logo.cpython-310.pyc
│   │   │   │   │   │   │   navigation.cpython-310.pyc
│   │   │   │   │   │   │   page_config.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── components/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── lib/
│   │   │   │   │   │   │   local_component_registry.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   local_component_registry.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── types/
│   │   │   │   │   │   │   base_component_registry.py
│   │   │   │   │   │   │   base_custom_component.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   base_component_registry.cpython-310.pyc
│   │   │   │   │   │   │   │   base_custom_component.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── v1/
│   │   │   │   │   │   │   components.py
│   │   │   │   │   │   │   component_arrow.py
│   │   │   │   │   │   │   component_registry.py
│   │   │   │   │   │   │   custom_component.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   components.cpython-310.pyc
│   │   │   │   │   │   │   │   component_arrow.cpython-310.pyc
│   │   │   │   │   │   │   │   component_registry.cpython-310.pyc
│   │   │   │   │   │   │   │   custom_component.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── v2/
│   │   │   │   │   │   │   component_definition_resolver.py
│   │   │   │   │   │   │   component_file_watcher.py
│   │   │   │   │   │   │   component_manager.py
│   │   │   │   │   │   │   component_manifest_handler.py
│   │   │   │   │   │   │   component_path_utils.py
│   │   │   │   │   │   │   component_registry.py
│   │   │   │   │   │   │   get_bidi_component_manager.py
│   │   │   │   │   │   │   manifest_scanner.py
│   │   │   │   │   │   │   presentation.py
│   │   │   │   │   │   │   types.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── bidi_component/
│   │   │   │   │   │   │   │   constants.py
│   │   │   │   │   │   │   │   main.py
│   │   │   │   │   │   │   │   serialization.py
│   │   │   │   │   │   │   │   state.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   constants.cpython-310.pyc
│   │   │   │   │   │   │   │   │   main.cpython-310.pyc
│   │   │   │   │   │   │   │   │   serialization.cpython-310.pyc
│   │   │   │   │   │   │   │   │   state.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   component_definition_resolver.cpython-310.pyc
│   │   │   │   │   │   │   │   component_file_watcher.cpython-310.pyc
│   │   │   │   │   │   │   │   component_manager.cpython-310.pyc
│   │   │   │   │   │   │   │   component_manifest_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   component_path_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   component_registry.cpython-310.pyc
│   │   │   │   │   │   │   │   get_bidi_component_manager.cpython-310.pyc
│   │   │   │   │   │   │   │   manifest_scanner.cpython-310.pyc
│   │   │   │   │   │   │   │   presentation.cpython-310.pyc
│   │   │   │   │   │   │   │   types.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── connections/
│   │   │   │   │   │   base_connection.py
│   │   │   │   │   │   snowflake_connection.py
│   │   │   │   │   │   snowpark_connection.py
│   │   │   │   │   │   sql_connection.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   base_connection.cpython-310.pyc
│   │   │   │   │   │   │   snowflake_connection.cpython-310.pyc
│   │   │   │   │   │   │   snowpark_connection.cpython-310.pyc
│   │   │   │   │   │   │   sql_connection.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── elements/
│   │   │   │   │   │   alert.py
│   │   │   │   │   │   arrow.py
│   │   │   │   │   │   balloons.py
│   │   │   │   │   │   bokeh_chart.py
│   │   │   │   │   │   code.py
│   │   │   │   │   │   deck_gl_json_chart.py
│   │   │   │   │   │   dialog_decorator.py
│   │   │   │   │   │   doc_string.py
│   │   │   │   │   │   empty.py
│   │   │   │   │   │   exception.py
│   │   │   │   │   │   form.py
│   │   │   │   │   │   graphviz_chart.py
│   │   │   │   │   │   heading.py
│   │   │   │   │   │   html.py
│   │   │   │   │   │   iframe.py
│   │   │   │   │   │   image.py
│   │   │   │   │   │   json.py
│   │   │   │   │   │   layouts.py
│   │   │   │   │   │   map.py
│   │   │   │   │   │   markdown.py
│   │   │   │   │   │   media.py
│   │   │   │   │   │   metric.py
│   │   │   │   │   │   pdf.py
│   │   │   │   │   │   plotly_chart.py
│   │   │   │   │   │   progress.py
│   │   │   │   │   │   pyplot.py
│   │   │   │   │   │   snow.py
│   │   │   │   │   │   space.py
│   │   │   │   │   │   spinner.py
│   │   │   │   │   │   text.py
│   │   │   │   │   │   toast.py
│   │   │   │   │   │   vega_charts.py
│   │   │   │   │   │   write.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── lib/
│   │   │   │   │   │   │   built_in_chart_utils.py
│   │   │   │   │   │   │   color_util.py
│   │   │   │   │   │   │   column_config_utils.py
│   │   │   │   │   │   │   column_types.py
│   │   │   │   │   │   │   dialog.py
│   │   │   │   │   │   │   dicttools.py
│   │   │   │   │   │   │   file_uploader_utils.py
│   │   │   │   │   │   │   form_utils.py
│   │   │   │   │   │   │   image_utils.py
│   │   │   │   │   │   │   js_number.py
│   │   │   │   │   │   │   layout_utils.py
│   │   │   │   │   │   │   mutable_status_container.py
│   │   │   │   │   │   │   options_selector_utils.py
│   │   │   │   │   │   │   pandas_styler_utils.py
│   │   │   │   │   │   │   policies.py
│   │   │   │   │   │   │   streamlit_plotly_theme.py
│   │   │   │   │   │   │   subtitle_utils.py
│   │   │   │   │   │   │   utils.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   built_in_chart_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   color_util.cpython-310.pyc
│   │   │   │   │   │   │   │   column_config_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   column_types.cpython-310.pyc
│   │   │   │   │   │   │   │   dialog.cpython-310.pyc
│   │   │   │   │   │   │   │   dicttools.cpython-310.pyc
│   │   │   │   │   │   │   │   file_uploader_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   form_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   image_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   js_number.cpython-310.pyc
│   │   │   │   │   │   │   │   layout_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   mutable_status_container.cpython-310.pyc
│   │   │   │   │   │   │   │   options_selector_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   pandas_styler_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   policies.cpython-310.pyc
│   │   │   │   │   │   │   │   streamlit_plotly_theme.cpython-310.pyc
│   │   │   │   │   │   │   │   subtitle_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── widgets/
│   │   │   │   │   │   │   audio_input.py
│   │   │   │   │   │   │   button.py
│   │   │   │   │   │   │   button_group.py
│   │   │   │   │   │   │   camera_input.py
│   │   │   │   │   │   │   chat.py
│   │   │   │   │   │   │   checkbox.py
│   │   │   │   │   │   │   color_picker.py
│   │   │   │   │   │   │   data_editor.py
│   │   │   │   │   │   │   file_uploader.py
│   │   │   │   │   │   │   multiselect.py
│   │   │   │   │   │   │   number_input.py
│   │   │   │   │   │   │   radio.py
│   │   │   │   │   │   │   selectbox.py
│   │   │   │   │   │   │   select_slider.py
│   │   │   │   │   │   │   slider.py
│   │   │   │   │   │   │   text_widgets.py
│   │   │   │   │   │   │   time_widgets.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   audio_input.cpython-310.pyc
│   │   │   │   │   │   │   │   button.cpython-310.pyc
│   │   │   │   │   │   │   │   button_group.cpython-310.pyc
│   │   │   │   │   │   │   │   camera_input.cpython-310.pyc
│   │   │   │   │   │   │   │   chat.cpython-310.pyc
│   │   │   │   │   │   │   │   checkbox.cpython-310.pyc
│   │   │   │   │   │   │   │   color_picker.cpython-310.pyc
│   │   │   │   │   │   │   │   data_editor.cpython-310.pyc
│   │   │   │   │   │   │   │   file_uploader.cpython-310.pyc
│   │   │   │   │   │   │   │   multiselect.cpython-310.pyc
│   │   │   │   │   │   │   │   number_input.cpython-310.pyc
│   │   │   │   │   │   │   │   radio.cpython-310.pyc
│   │   │   │   │   │   │   │   selectbox.cpython-310.pyc
│   │   │   │   │   │   │   │   select_slider.cpython-310.pyc
│   │   │   │   │   │   │   │   slider.cpython-310.pyc
│   │   │   │   │   │   │   │   text_widgets.cpython-310.pyc
│   │   │   │   │   │   │   │   time_widgets.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   alert.cpython-310.pyc
│   │   │   │   │   │   │   arrow.cpython-310.pyc
│   │   │   │   │   │   │   balloons.cpython-310.pyc
│   │   │   │   │   │   │   bokeh_chart.cpython-310.pyc
│   │   │   │   │   │   │   code.cpython-310.pyc
│   │   │   │   │   │   │   deck_gl_json_chart.cpython-310.pyc
│   │   │   │   │   │   │   dialog_decorator.cpython-310.pyc
│   │   │   │   │   │   │   doc_string.cpython-310.pyc
│   │   │   │   │   │   │   empty.cpython-310.pyc
│   │   │   │   │   │   │   exception.cpython-310.pyc
│   │   │   │   │   │   │   form.cpython-310.pyc
│   │   │   │   │   │   │   graphviz_chart.cpython-310.pyc
│   │   │   │   │   │   │   heading.cpython-310.pyc
│   │   │   │   │   │   │   html.cpython-310.pyc
│   │   │   │   │   │   │   iframe.cpython-310.pyc
│   │   │   │   │   │   │   image.cpython-310.pyc
│   │   │   │   │   │   │   json.cpython-310.pyc
│   │   │   │   │   │   │   layouts.cpython-310.pyc
│   │   │   │   │   │   │   map.cpython-310.pyc
│   │   │   │   │   │   │   markdown.cpython-310.pyc
│   │   │   │   │   │   │   media.cpython-310.pyc
│   │   │   │   │   │   │   metric.cpython-310.pyc
│   │   │   │   │   │   │   pdf.cpython-310.pyc
│   │   │   │   │   │   │   plotly_chart.cpython-310.pyc
│   │   │   │   │   │   │   progress.cpython-310.pyc
│   │   │   │   │   │   │   pyplot.cpython-310.pyc
│   │   │   │   │   │   │   snow.cpython-310.pyc
│   │   │   │   │   │   │   space.cpython-310.pyc
│   │   │   │   │   │   │   spinner.cpython-310.pyc
│   │   │   │   │   │   │   text.cpython-310.pyc
│   │   │   │   │   │   │   toast.cpython-310.pyc
│   │   │   │   │   │   │   vega_charts.cpython-310.pyc
│   │   │   │   │   │   │   write.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── external/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── langchain/
│   │   │   │   │   │   │   streamlit_callback_handler.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   streamlit_callback_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── hello/
│   │   │   │   │   │   animation_demo.py
│   │   │   │   │   │   dataframe_demo.py
│   │   │   │   │   │   hello.py
│   │   │   │   │   │   mapping_demo.py
│   │   │   │   │   │   plotting_demo.py
│   │   │   │   │   │   streamlit_app.py
│   │   │   │   │   │   utils.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   animation_demo.cpython-310.pyc
│   │   │   │   │   │   │   dataframe_demo.cpython-310.pyc
│   │   │   │   │   │   │   hello.cpython-310.pyc
│   │   │   │   │   │   │   mapping_demo.cpython-310.pyc
│   │   │   │   │   │   │   plotting_demo.cpython-310.pyc
│   │   │   │   │   │   │   streamlit_app.cpython-310.pyc
│   │   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── navigation/
│   │   │   │   │   │   page.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   page.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── proto/
│   │   │   │   │   │   Alert_pb2.py
│   │   │   │   │   │   Alert_pb2.pyi
│   │   │   │   │   │   AppPage_pb2.py
│   │   │   │   │   │   AppPage_pb2.pyi
│   │   │   │   │   │   ArrowData_pb2.py
│   │   │   │   │   │   ArrowData_pb2.pyi
│   │   │   │   │   │   ArrowNamedDataSet_pb2.py
│   │   │   │   │   │   ArrowNamedDataSet_pb2.pyi
│   │   │   │   │   │   ArrowVegaLiteChart_pb2.py
│   │   │   │   │   │   ArrowVegaLiteChart_pb2.pyi
│   │   │   │   │   │   Arrow_pb2.py
│   │   │   │   │   │   Arrow_pb2.pyi
│   │   │   │   │   │   AudioInput_pb2.py
│   │   │   │   │   │   AudioInput_pb2.pyi
│   │   │   │   │   │   Audio_pb2.py
│   │   │   │   │   │   Audio_pb2.pyi
│   │   │   │   │   │   AuthRedirect_pb2.py
│   │   │   │   │   │   AuthRedirect_pb2.pyi
│   │   │   │   │   │   AutoRerun_pb2.py
│   │   │   │   │   │   AutoRerun_pb2.pyi
│   │   │   │   │   │   BackMsg_pb2.py
│   │   │   │   │   │   BackMsg_pb2.pyi
│   │   │   │   │   │   Balloons_pb2.py
│   │   │   │   │   │   Balloons_pb2.pyi
│   │   │   │   │   │   BidiComponent_pb2.py
│   │   │   │   │   │   BidiComponent_pb2.pyi
│   │   │   │   │   │   Block_pb2.py
│   │   │   │   │   │   Block_pb2.pyi
│   │   │   │   │   │   BokehChart_pb2.py
│   │   │   │   │   │   BokehChart_pb2.pyi
│   │   │   │   │   │   ButtonGroup_pb2.py
│   │   │   │   │   │   ButtonGroup_pb2.pyi
│   │   │   │   │   │   Button_pb2.py
│   │   │   │   │   │   Button_pb2.pyi
│   │   │   │   │   │   CameraInput_pb2.py
│   │   │   │   │   │   CameraInput_pb2.pyi
│   │   │   │   │   │   ChatInput_pb2.py
│   │   │   │   │   │   ChatInput_pb2.pyi
│   │   │   │   │   │   Checkbox_pb2.py
│   │   │   │   │   │   Checkbox_pb2.pyi
│   │   │   │   │   │   ClientState_pb2.py
│   │   │   │   │   │   ClientState_pb2.pyi
│   │   │   │   │   │   Code_pb2.py
│   │   │   │   │   │   Code_pb2.pyi
│   │   │   │   │   │   ColorPicker_pb2.py
│   │   │   │   │   │   ColorPicker_pb2.pyi
│   │   │   │   │   │   Common_pb2.py
│   │   │   │   │   │   Common_pb2.pyi
│   │   │   │   │   │   Components_pb2.py
│   │   │   │   │   │   Components_pb2.pyi
│   │   │   │   │   │   DataFrame_pb2.py
│   │   │   │   │   │   DataFrame_pb2.pyi
│   │   │   │   │   │   DateInput_pb2.py
│   │   │   │   │   │   DateInput_pb2.pyi
│   │   │   │   │   │   DeckGlJsonChart_pb2.py
│   │   │   │   │   │   DeckGlJsonChart_pb2.pyi
│   │   │   │   │   │   Delta_pb2.py
│   │   │   │   │   │   Delta_pb2.pyi
│   │   │   │   │   │   DocString_pb2.py
│   │   │   │   │   │   DocString_pb2.pyi
│   │   │   │   │   │   DownloadButton_pb2.py
│   │   │   │   │   │   DownloadButton_pb2.pyi
│   │   │   │   │   │   Element_pb2.py
│   │   │   │   │   │   Element_pb2.pyi
│   │   │   │   │   │   Empty_pb2.py
│   │   │   │   │   │   Empty_pb2.pyi
│   │   │   │   │   │   Exception_pb2.py
│   │   │   │   │   │   Exception_pb2.pyi
│   │   │   │   │   │   Favicon_pb2.py
│   │   │   │   │   │   Favicon_pb2.pyi
│   │   │   │   │   │   FileUploader_pb2.py
│   │   │   │   │   │   FileUploader_pb2.pyi
│   │   │   │   │   │   ForwardMsg_pb2.py
│   │   │   │   │   │   ForwardMsg_pb2.pyi
│   │   │   │   │   │   GapSize_pb2.py
│   │   │   │   │   │   GapSize_pb2.pyi
│   │   │   │   │   │   GitInfo_pb2.py
│   │   │   │   │   │   GitInfo_pb2.pyi
│   │   │   │   │   │   GraphVizChart_pb2.py
│   │   │   │   │   │   GraphVizChart_pb2.pyi
│   │   │   │   │   │   Heading_pb2.py
│   │   │   │   │   │   Heading_pb2.pyi
│   │   │   │   │   │   HeightConfig_pb2.py
│   │   │   │   │   │   HeightConfig_pb2.pyi
│   │   │   │   │   │   Html_pb2.py
│   │   │   │   │   │   Html_pb2.pyi
│   │   │   │   │   │   IFrame_pb2.py
│   │   │   │   │   │   IFrame_pb2.pyi
│   │   │   │   │   │   Image_pb2.py
│   │   │   │   │   │   Image_pb2.pyi
│   │   │   │   │   │   Json_pb2.py
│   │   │   │   │   │   Json_pb2.pyi
│   │   │   │   │   │   LabelVisibilityMessage_pb2.py
│   │   │   │   │   │   LabelVisibilityMessage_pb2.pyi
│   │   │   │   │   │   LinkButton_pb2.py
│   │   │   │   │   │   LinkButton_pb2.pyi
│   │   │   │   │   │   Logo_pb2.py
│   │   │   │   │   │   Logo_pb2.pyi
│   │   │   │   │   │   Markdown_pb2.py
│   │   │   │   │   │   Markdown_pb2.pyi
│   │   │   │   │   │   MetricsEvent_pb2.py
│   │   │   │   │   │   MetricsEvent_pb2.pyi
│   │   │   │   │   │   Metric_pb2.py
│   │   │   │   │   │   Metric_pb2.pyi
│   │   │   │   │   │   MultiSelect_pb2.py
│   │   │   │   │   │   MultiSelect_pb2.pyi
│   │   │   │   │   │   NamedDataSet_pb2.py
│   │   │   │   │   │   NamedDataSet_pb2.pyi
│   │   │   │   │   │   Navigation_pb2.py
│   │   │   │   │   │   Navigation_pb2.pyi
│   │   │   │   │   │   NewSession_pb2.py
│   │   │   │   │   │   NewSession_pb2.pyi
│   │   │   │   │   │   NumberInput_pb2.py
│   │   │   │   │   │   NumberInput_pb2.pyi
│   │   │   │   │   │   openmetrics_data_model_pb2.py
│   │   │   │   │   │   openmetrics_data_model_pb2.pyi
│   │   │   │   │   │   PageConfig_pb2.py
│   │   │   │   │   │   PageConfig_pb2.pyi
│   │   │   │   │   │   PageInfo_pb2.py
│   │   │   │   │   │   PageInfo_pb2.pyi
│   │   │   │   │   │   PageLink_pb2.py
│   │   │   │   │   │   PageLink_pb2.pyi
│   │   │   │   │   │   PageNotFound_pb2.py
│   │   │   │   │   │   PageNotFound_pb2.pyi
│   │   │   │   │   │   PageProfile_pb2.py
│   │   │   │   │   │   PageProfile_pb2.pyi
│   │   │   │   │   │   PagesChanged_pb2.py
│   │   │   │   │   │   PagesChanged_pb2.pyi
│   │   │   │   │   │   ParentMessage_pb2.py
│   │   │   │   │   │   ParentMessage_pb2.pyi
│   │   │   │   │   │   PlotlyChart_pb2.py
│   │   │   │   │   │   PlotlyChart_pb2.pyi
│   │   │   │   │   │   Progress_pb2.py
│   │   │   │   │   │   Progress_pb2.pyi
│   │   │   │   │   │   Radio_pb2.py
│   │   │   │   │   │   Radio_pb2.pyi
│   │   │   │   │   │   RootContainer_pb2.py
│   │   │   │   │   │   RootContainer_pb2.pyi
│   │   │   │   │   │   Selectbox_pb2.py
│   │   │   │   │   │   Selectbox_pb2.pyi
│   │   │   │   │   │   SessionEvent_pb2.py
│   │   │   │   │   │   SessionEvent_pb2.pyi
│   │   │   │   │   │   SessionStatus_pb2.py
│   │   │   │   │   │   SessionStatus_pb2.pyi
│   │   │   │   │   │   Skeleton_pb2.py
│   │   │   │   │   │   Skeleton_pb2.pyi
│   │   │   │   │   │   Slider_pb2.py
│   │   │   │   │   │   Slider_pb2.pyi
│   │   │   │   │   │   Snow_pb2.py
│   │   │   │   │   │   Snow_pb2.pyi
│   │   │   │   │   │   Space_pb2.py
│   │   │   │   │   │   Space_pb2.pyi
│   │   │   │   │   │   Spinner_pb2.py
│   │   │   │   │   │   Spinner_pb2.pyi
│   │   │   │   │   │   TextArea_pb2.py
│   │   │   │   │   │   TextArea_pb2.pyi
│   │   │   │   │   │   TextInput_pb2.py
│   │   │   │   │   │   TextInput_pb2.pyi
│   │   │   │   │   │   Text_pb2.py
│   │   │   │   │   │   Text_pb2.pyi
│   │   │   │   │   │   TimeInput_pb2.py
│   │   │   │   │   │   TimeInput_pb2.pyi
│   │   │   │   │   │   Toast_pb2.py
│   │   │   │   │   │   Toast_pb2.pyi
│   │   │   │   │   │   VegaLiteChart_pb2.py
│   │   │   │   │   │   VegaLiteChart_pb2.pyi
│   │   │   │   │   │   Video_pb2.py
│   │   │   │   │   │   Video_pb2.pyi
│   │   │   │   │   │   WidgetStates_pb2.py
│   │   │   │   │   │   WidgetStates_pb2.pyi
│   │   │   │   │   │   WidthConfig_pb2.py
│   │   │   │   │   │   WidthConfig_pb2.pyi
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   Alert_pb2.cpython-310.pyc
│   │   │   │   │   │   │   AppPage_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ArrowData_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ArrowNamedDataSet_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ArrowVegaLiteChart_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Arrow_pb2.cpython-310.pyc
│   │   │   │   │   │   │   AudioInput_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Audio_pb2.cpython-310.pyc
│   │   │   │   │   │   │   AuthRedirect_pb2.cpython-310.pyc
│   │   │   │   │   │   │   AutoRerun_pb2.cpython-310.pyc
│   │   │   │   │   │   │   BackMsg_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Balloons_pb2.cpython-310.pyc
│   │   │   │   │   │   │   BidiComponent_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Block_pb2.cpython-310.pyc
│   │   │   │   │   │   │   BokehChart_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ButtonGroup_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Button_pb2.cpython-310.pyc
│   │   │   │   │   │   │   CameraInput_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ChatInput_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Checkbox_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ClientState_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Code_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ColorPicker_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Common_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Components_pb2.cpython-310.pyc
│   │   │   │   │   │   │   DataFrame_pb2.cpython-310.pyc
│   │   │   │   │   │   │   DateInput_pb2.cpython-310.pyc
│   │   │   │   │   │   │   DeckGlJsonChart_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Delta_pb2.cpython-310.pyc
│   │   │   │   │   │   │   DocString_pb2.cpython-310.pyc
│   │   │   │   │   │   │   DownloadButton_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Element_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Empty_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Exception_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Favicon_pb2.cpython-310.pyc
│   │   │   │   │   │   │   FileUploader_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ForwardMsg_pb2.cpython-310.pyc
│   │   │   │   │   │   │   GapSize_pb2.cpython-310.pyc
│   │   │   │   │   │   │   GitInfo_pb2.cpython-310.pyc
│   │   │   │   │   │   │   GraphVizChart_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Heading_pb2.cpython-310.pyc
│   │   │   │   │   │   │   HeightConfig_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Html_pb2.cpython-310.pyc
│   │   │   │   │   │   │   IFrame_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Image_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Json_pb2.cpython-310.pyc
│   │   │   │   │   │   │   LabelVisibilityMessage_pb2.cpython-310.pyc
│   │   │   │   │   │   │   LinkButton_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Logo_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Markdown_pb2.cpython-310.pyc
│   │   │   │   │   │   │   MetricsEvent_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Metric_pb2.cpython-310.pyc
│   │   │   │   │   │   │   MultiSelect_pb2.cpython-310.pyc
│   │   │   │   │   │   │   NamedDataSet_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Navigation_pb2.cpython-310.pyc
│   │   │   │   │   │   │   NewSession_pb2.cpython-310.pyc
│   │   │   │   │   │   │   NumberInput_pb2.cpython-310.pyc
│   │   │   │   │   │   │   openmetrics_data_model_pb2.cpython-310.pyc
│   │   │   │   │   │   │   PageConfig_pb2.cpython-310.pyc
│   │   │   │   │   │   │   PageInfo_pb2.cpython-310.pyc
│   │   │   │   │   │   │   PageLink_pb2.cpython-310.pyc
│   │   │   │   │   │   │   PageNotFound_pb2.cpython-310.pyc
│   │   │   │   │   │   │   PageProfile_pb2.cpython-310.pyc
│   │   │   │   │   │   │   PagesChanged_pb2.cpython-310.pyc
│   │   │   │   │   │   │   ParentMessage_pb2.cpython-310.pyc
│   │   │   │   │   │   │   PlotlyChart_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Progress_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Radio_pb2.cpython-310.pyc
│   │   │   │   │   │   │   RootContainer_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Selectbox_pb2.cpython-310.pyc
│   │   │   │   │   │   │   SessionEvent_pb2.cpython-310.pyc
│   │   │   │   │   │   │   SessionStatus_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Skeleton_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Slider_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Snow_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Space_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Spinner_pb2.cpython-310.pyc
│   │   │   │   │   │   │   TextArea_pb2.cpython-310.pyc
│   │   │   │   │   │   │   TextInput_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Text_pb2.cpython-310.pyc
│   │   │   │   │   │   │   TimeInput_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Toast_pb2.cpython-310.pyc
│   │   │   │   │   │   │   VegaLiteChart_pb2.cpython-310.pyc
│   │   │   │   │   │   │   Video_pb2.cpython-310.pyc
│   │   │   │   │   │   │   WidgetStates_pb2.cpython-310.pyc
│   │   │   │   │   │   │   WidthConfig_pb2.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── runtime/
│   │   │   │   │   │   app_session.py
│   │   │   │   │   │   connection_factory.py
│   │   │   │   │   │   context.py
│   │   │   │   │   │   context_util.py
│   │   │   │   │   │   credentials.py
│   │   │   │   │   │   forward_msg_cache.py
│   │   │   │   │   │   forward_msg_queue.py
│   │   │   │   │   │   fragment.py
│   │   │   │   │   │   media_file_manager.py
│   │   │   │   │   │   media_file_storage.py
│   │   │   │   │   │   memory_media_file_storage.py
│   │   │   │   │   │   memory_session_storage.py
│   │   │   │   │   │   memory_uploaded_file_manager.py
│   │   │   │   │   │   metrics_util.py
│   │   │   │   │   │   pages_manager.py
│   │   │   │   │   │   runtime.py
│   │   │   │   │   │   runtime_util.py
│   │   │   │   │   │   script_data.py
│   │   │   │   │   │   secrets.py
│   │   │   │   │   │   session_manager.py
│   │   │   │   │   │   stats.py
│   │   │   │   │   │   theme_util.py
│   │   │   │   │   │   uploaded_file_manager.py
│   │   │   │   │   │   websocket_session_manager.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── caching/
│   │   │   │   │   │   │   cached_message_replay.py
│   │   │   │   │   │   │   cache_data_api.py
│   │   │   │   │   │   │   cache_errors.py
│   │   │   │   │   │   │   cache_resource_api.py
│   │   │   │   │   │   │   cache_type.py
│   │   │   │   │   │   │   cache_utils.py
│   │   │   │   │   │   │   hashing.py
│   │   │   │   │   │   │   legacy_cache_api.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── storage/
│   │   │   │   │   │   │   │   cache_storage_protocol.py
│   │   │   │   │   │   │   │   dummy_cache_storage.py
│   │   │   │   │   │   │   │   in_memory_cache_storage_wrapper.py
│   │   │   │   │   │   │   │   local_disk_cache_storage.py
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   cache_storage_protocol.cpython-310.pyc
│   │   │   │   │   │   │   │   │   dummy_cache_storage.cpython-310.pyc
│   │   │   │   │   │   │   │   │   in_memory_cache_storage_wrapper.cpython-310.pyc
│   │   │   │   │   │   │   │   │   local_disk_cache_storage.cpython-310.pyc
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   cached_message_replay.cpython-310.pyc
│   │   │   │   │   │   │   │   cache_data_api.cpython-310.pyc
│   │   │   │   │   │   │   │   cache_errors.cpython-310.pyc
│   │   │   │   │   │   │   │   cache_resource_api.cpython-310.pyc
│   │   │   │   │   │   │   │   cache_type.cpython-310.pyc
│   │   │   │   │   │   │   │   cache_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   hashing.cpython-310.pyc
│   │   │   │   │   │   │   │   legacy_cache_api.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scriptrunner/
│   │   │   │   │   │   │   exec_code.py
│   │   │   │   │   │   │   magic.py
│   │   │   │   │   │   │   magic_funcs.py
│   │   │   │   │   │   │   script_cache.py
│   │   │   │   │   │   │   script_runner.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   exec_code.cpython-310.pyc
│   │   │   │   │   │   │   │   magic.cpython-310.pyc
│   │   │   │   │   │   │   │   magic_funcs.cpython-310.pyc
│   │   │   │   │   │   │   │   script_cache.cpython-310.pyc
│   │   │   │   │   │   │   │   script_runner.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── scriptrunner_utils/
│   │   │   │   │   │   │   exceptions.py
│   │   │   │   │   │   │   script_requests.py
│   │   │   │   │   │   │   script_run_context.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   │   │   script_requests.cpython-310.pyc
│   │   │   │   │   │   │   │   script_run_context.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── state/
│   │   │   │   │   │   │   common.py
│   │   │   │   │   │   │   presentation.py
│   │   │   │   │   │   │   query_params.py
│   │   │   │   │   │   │   query_params_proxy.py
│   │   │   │   │   │   │   safe_session_state.py
│   │   │   │   │   │   │   session_state.py
│   │   │   │   │   │   │   session_state_proxy.py
│   │   │   │   │   │   │   widgets.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   common.cpython-310.pyc
│   │   │   │   │   │   │   │   presentation.cpython-310.pyc
│   │   │   │   │   │   │   │   query_params.cpython-310.pyc
│   │   │   │   │   │   │   │   query_params_proxy.cpython-310.pyc
│   │   │   │   │   │   │   │   safe_session_state.cpython-310.pyc
│   │   │   │   │   │   │   │   session_state.cpython-310.pyc
│   │   │   │   │   │   │   │   session_state_proxy.cpython-310.pyc
│   │   │   │   │   │   │   │   widgets.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   app_session.cpython-310.pyc
│   │   │   │   │   │   │   connection_factory.cpython-310.pyc
│   │   │   │   │   │   │   context.cpython-310.pyc
│   │   │   │   │   │   │   context_util.cpython-310.pyc
│   │   │   │   │   │   │   credentials.cpython-310.pyc
│   │   │   │   │   │   │   forward_msg_cache.cpython-310.pyc
│   │   │   │   │   │   │   forward_msg_queue.cpython-310.pyc
│   │   │   │   │   │   │   fragment.cpython-310.pyc
│   │   │   │   │   │   │   media_file_manager.cpython-310.pyc
│   │   │   │   │   │   │   media_file_storage.cpython-310.pyc
│   │   │   │   │   │   │   memory_media_file_storage.cpython-310.pyc
│   │   │   │   │   │   │   memory_session_storage.cpython-310.pyc
│   │   │   │   │   │   │   memory_uploaded_file_manager.cpython-310.pyc
│   │   │   │   │   │   │   metrics_util.cpython-310.pyc
│   │   │   │   │   │   │   pages_manager.cpython-310.pyc
│   │   │   │   │   │   │   runtime.cpython-310.pyc
│   │   │   │   │   │   │   runtime_util.cpython-310.pyc
│   │   │   │   │   │   │   script_data.cpython-310.pyc
│   │   │   │   │   │   │   secrets.cpython-310.pyc
│   │   │   │   │   │   │   session_manager.cpython-310.pyc
│   │   │   │   │   │   │   stats.cpython-310.pyc
│   │   │   │   │   │   │   theme_util.cpython-310.pyc
│   │   │   │   │   │   │   uploaded_file_manager.cpython-310.pyc
│   │   │   │   │   │   │   websocket_session_manager.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── static/
│   │   │   │   │   │   favicon.png
│   │   │   │   │   │   index.html
│   │   │   │   │   │   manifest.json
│   │   │   │   │   │   ├── static/
│   │   │   │   │   │   │   ├── css/
│   │   │   │   │   │   │   │   index.BpABIXK9.css
│   │   │   │   │   │   │   │   index.DgR7E2CV.css
│   │   │   │   │   │   │   │   index.DzuxGC_t.css
│   │   │   │   │   │   │   ├── js/
│   │   │   │   │   │   │   │   base-input.CJGiNqed.js
│   │   │   │   │   │   │   │   checkbox.Cpdd482O.js
│   │   │   │   │   │   │   │   createDownloadLinkElement.ZaXNnPK4.js
│   │   │   │   │   │   │   │   createSuper.CuQIogbW.js
│   │   │   │   │   │   │   │   data-grid-overlay-editor.2Ufgxc6y.js
│   │   │   │   │   │   │   │   downloader.CN0K7xlu.js
│   │   │   │   │   │   │   │   ErrorOutline.esm.YoJdlW1p.js
│   │   │   │   │   │   │   │   es6.BJcsVXQ0.js
│   │   │   │   │   │   │   │   FileDownload.esm.Ddx8VEYy.js
│   │   │   │   │   │   │   │   FileHelper.90EtOmj9.js
│   │   │   │   │   │   │   │   FormClearHelper.BB1Km6eP.js
│   │   │   │   │   │   │   │   iframeResizer.contentWindow.XzUvQqcZ.js
│   │   │   │   │   │   │   │   index.B1ZQh4P1.js
│   │   │   │   │   │   │   │   index.BgnZEMVh.js
│   │   │   │   │   │   │   │   index.BKstZk0M.js
│   │   │   │   │   │   │   │   index.BMcFsUee.js
│   │   │   │   │   │   │   │   index.BohqXifI.js
│   │   │   │   │   │   │   │   index.BR-IdcTb.js
│   │   │   │   │   │   │   │   index.Br5nxKNj.js
│   │   │   │   │   │   │   │   index.BrIKVbNc.js
│   │   │   │   │   │   │   │   index.BtWUPzle.js
│   │   │   │   │   │   │   │   index.B_dWA3vd.js
│   │   │   │   │   │   │   │   index.C0RLraek.js
│   │   │   │   │   │   │   │   index.CAIjskgG.js
│   │   │   │   │   │   │   │   index.CAj-7vWz.js
│   │   │   │   │   │   │   │   index.CkRlykEE.js
│   │   │   │   │   │   │   │   index.CmN3FXfI.js
│   │   │   │   │   │   │   │   index.CMtEit2O.js
│   │   │   │   │   │   │   │   index.CwbFI1_-.js
│   │   │   │   │   │   │   │   index.CxIUUfab.js
│   │   │   │   │   │   │   │   index.D2KPNy7e.js
│   │   │   │   │   │   │   │   index.D3GPA5k4.js
│   │   │   │   │   │   │   │   index.DaSmGJ76.js
│   │   │   │   │   │   │   │   index.Dd7bMeLP.js
│   │   │   │   │   │   │   │   index.DGAh7DMq.js
│   │   │   │   │   │   │   │   index.DjmmgI5U.js
│   │   │   │   │   │   │   │   index.DKb_NvmG.js
│   │   │   │   │   │   │   │   index.DMqgUYKq.js
│   │   │   │   │   │   │   │   index.DOFlg3dS.js
│   │   │   │   │   │   │   │   index.DPUXkcQL.js
│   │   │   │   │   │   │   │   index.Dq56CyM2.js
│   │   │   │   │   │   │   │   index.DuiXaS5_.js
│   │   │   │   │   │   │   │   index.DvFidMLe.js
│   │   │   │   │   │   │   │   index.DwkhC5Pc.js
│   │   │   │   │   │   │   │   index.DX1xY89g.js
│   │   │   │   │   │   │   │   index.DYATBCsq.js
│   │   │   │   │   │   │   │   index.Q-3sFn1v.js
│   │   │   │   │   │   │   │   index.QJ5QO9sJ.js
│   │   │   │   │   │   │   │   index.VwTaeety.js
│   │   │   │   │   │   │   │   index.YOqQbeX8.js
│   │   │   │   │   │   │   │   input.D4MN_FzN.js
│   │   │   │   │   │   │   │   InputInstructions.jhH15PqV.js
│   │   │   │   │   │   │   │   inputUtils.CptNuJwn.js
│   │   │   │   │   │   │   │   memory.DrZjtdGT.js
│   │   │   │   │   │   │   │   number-overlay-editor.DRwAw1In.js
│   │   │   │   │   │   │   │   Particles.DUsputn1.js
│   │   │   │   │   │   │   │   possibleConstructorReturn.exeeJQEP.js
│   │   │   │   │   │   │   │   ProgressBar.DLY8H6nE.js
│   │   │   │   │   │   │   │   record.B-tDciZb.js
│   │   │   │   │   │   │   │   sandbox.ClO3IuUr.js
│   │   │   │   │   │   │   │   sprintf.D7DtBTRn.js
│   │   │   │   │   │   │   │   timepicker.DAhu-vcF.js
│   │   │   │   │   │   │   │   toConsumableArray.DNbljYEC.js
│   │   │   │   │   │   │   │   Toolbar.D8nHCkuz.js
│   │   │   │   │   │   │   │   uniqueId.oG4Gvj1v.js
│   │   │   │   │   │   │   │   UploadFileInfo.C-jY39rj.js
│   │   │   │   │   │   │   │   useBasicWidgetState.D6sOH6oI.js
│   │   │   │   │   │   │   │   useTextInputAutoExpand.4u3_GcuN.js
│   │   │   │   │   │   │   │   useUpdateUiValue.F2R3eTeR.js
│   │   │   │   │   │   │   │   wavesurfer.esm.vI8Eid4k.js
│   │   │   │   │   │   │   │   withFullScreenWrapper.zothJIsI.js
│   │   │   │   │   │   │   ├── media/
│   │   │   │   │   │   │   │   balloon-0.Czj7AKwE.png
│   │   │   │   │   │   │   │   balloon-1.CNvFFrND.png
│   │   │   │   │   │   │   │   balloon-2.DTvC6B1t.png
│   │   │   │   │   │   │   │   balloon-3.CgSk4tbL.png
│   │   │   │   │   │   │   │   balloon-4.mbtFrzxf.png
│   │   │   │   │   │   │   │   balloon-5.CSwkUfRA.png
│   │   │   │   │   │   │   │   fireworks.B4d-_KUe.gif
│   │   │   │   │   │   │   │   flake-0.DgWaVvm5.png
│   │   │   │   │   │   │   │   flake-1.B2r5AHMK.png
│   │   │   │   │   │   │   │   flake-2.BnWSExPC.png
│   │   │   │   │   │   │   │   KaTeX_AMS-Regular.BQhdFMY1.woff2
│   │   │   │   │   │   │   │   KaTeX_AMS-Regular.DMm9YOAa.woff
│   │   │   │   │   │   │   │   KaTeX_AMS-Regular.DRggAlZN.ttf
│   │   │   │   │   │   │   │   KaTeX_Caligraphic-Bold.ATXxdsX0.ttf
│   │   │   │   │   │   │   │   KaTeX_Caligraphic-Bold.BEiXGLvX.woff
│   │   │   │   │   │   │   │   KaTeX_Caligraphic-Bold.Dq_IR9rO.woff2
│   │   │   │   │   │   │   │   KaTeX_Caligraphic-Regular.CTRA-rTL.woff
│   │   │   │   │   │   │   │   KaTeX_Caligraphic-Regular.Di6jR-x-.woff2
│   │   │   │   │   │   │   │   KaTeX_Caligraphic-Regular.wX97UBjC.ttf
│   │   │   │   │   │   │   │   KaTeX_Fraktur-Bold.BdnERNNW.ttf
│   │   │   │   │   │   │   │   KaTeX_Fraktur-Bold.BsDP51OF.woff
│   │   │   │   │   │   │   │   KaTeX_Fraktur-Bold.CL6g_b3V.woff2
│   │   │   │   │   │   │   │   KaTeX_Fraktur-Regular.CB_wures.ttf
│   │   │   │   │   │   │   │   KaTeX_Fraktur-Regular.CTYiF6lA.woff2
│   │   │   │   │   │   │   │   KaTeX_Fraktur-Regular.Dxdc4cR9.woff
│   │   │   │   │   │   │   │   KaTeX_Main-Bold.Cx986IdX.woff2
│   │   │   │   │   │   │   │   KaTeX_Main-Bold.Jm3AIy58.woff
│   │   │   │   │   │   │   │   KaTeX_Main-Bold.waoOVXN0.ttf
│   │   │   │   │   │   │   │   KaTeX_Main-BoldItalic.DxDJ3AOS.woff2
│   │   │   │   │   │   │   │   KaTeX_Main-BoldItalic.DzxPMmG6.ttf
│   │   │   │   │   │   │   │   KaTeX_Main-BoldItalic.SpSLRI95.woff
│   │   │   │   │   │   │   │   KaTeX_Main-Italic.3WenGoN9.ttf
│   │   │   │   │   │   │   │   KaTeX_Main-Italic.BMLOBm91.woff
│   │   │   │   │   │   │   │   KaTeX_Main-Italic.NWA7e6Wa.woff2
│   │   │   │   │   │   │   │   KaTeX_Main-Regular.B22Nviop.woff2
│   │   │   │   │   │   │   │   KaTeX_Main-Regular.Dr94JaBh.woff
│   │   │   │   │   │   │   │   KaTeX_Main-Regular.ypZvNtVU.ttf
│   │   │   │   │   │   │   │   KaTeX_Math-BoldItalic.B3XSjfu4.ttf
│   │   │   │   │   │   │   │   KaTeX_Math-BoldItalic.CZnvNsCZ.woff2
│   │   │   │   │   │   │   │   KaTeX_Math-BoldItalic.iY-2wyZ7.woff
│   │   │   │   │   │   │   │   KaTeX_Math-Italic.DA0__PXp.woff
│   │   │   │   │   │   │   │   KaTeX_Math-Italic.flOr_0UB.ttf
│   │   │   │   │   │   │   │   KaTeX_Math-Italic.t53AETM-.woff2
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Bold.CFMepnvq.ttf
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Bold.D1sUS0GD.woff2
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Bold.DbIhKOiC.woff
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Italic.C3H0VqGB.woff2
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Italic.DN2j7dab.woff
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Italic.YYjJ1zSn.ttf
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Regular.BNo7hRIc.ttf
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Regular.CS6fqUqJ.woff
│   │   │   │   │   │   │   │   KaTeX_SansSerif-Regular.DDBCnlJ7.woff2
│   │   │   │   │   │   │   │   KaTeX_Script-Regular.C5JkGWo-.ttf
│   │   │   │   │   │   │   │   KaTeX_Script-Regular.D3wIWfF6.woff2
│   │   │   │   │   │   │   │   KaTeX_Script-Regular.D5yQViql.woff
│   │   │   │   │   │   │   │   KaTeX_Size1-Regular.C195tn64.woff
│   │   │   │   │   │   │   │   KaTeX_Size1-Regular.Dbsnue_I.ttf
│   │   │   │   │   │   │   │   KaTeX_Size1-Regular.mCD8mA8B.woff2
│   │   │   │   │   │   │   │   KaTeX_Size2-Regular.B7gKUWhC.ttf
│   │   │   │   │   │   │   │   KaTeX_Size2-Regular.Dy4dx90m.woff2
│   │   │   │   │   │   │   │   KaTeX_Size2-Regular.oD1tc_U0.woff
│   │   │   │   │   │   │   │   KaTeX_Size3-Regular.CTq5MqoE.woff
│   │   │   │   │   │   │   │   KaTeX_Size3-Regular.DgpXs0kz.ttf
│   │   │   │   │   │   │   │   KaTeX_Size4-Regular.BF-4gkZK.woff
│   │   │   │   │   │   │   │   KaTeX_Size4-Regular.Dl5lxZxV.woff2
│   │   │   │   │   │   │   │   KaTeX_Size4-Regular.DWFBv043.ttf
│   │   │   │   │   │   │   │   KaTeX_Typewriter-Regular.C0xS9mPB.woff
│   │   │   │   │   │   │   │   KaTeX_Typewriter-Regular.CO6r4hn1.woff2
│   │   │   │   │   │   │   │   KaTeX_Typewriter-Regular.D3Ib7_Hf.ttf
│   │   │   │   │   │   │   │   MaterialSymbols-Rounded.C7IFxh57.woff2
│   │   │   │   │   │   │   │   snowflake.JU2jBHL8.svg
│   │   │   │   │   │   │   │   SourceCodeVF-Italic.ttf.Ba1oaZG1.woff2
│   │   │   │   │   │   │   │   SourceCodeVF-Upright.ttf.BjWn63N-.woff2
│   │   │   │   │   │   │   │   SourceSansVF-Italic.ttf.Bt9VkdQ3.woff2
│   │   │   │   │   │   │   │   SourceSansVF-Upright.ttf.BsWL4Kly.woff2
│   │   │   │   │   │   │   │   SourceSerifVariable-Italic.ttf.CVdzAtxO.woff2
│   │   │   │   │   │   │   │   SourceSerifVariable-Roman.ttf.mdpVL9bi.woff2
│   │   │   │   │   ├── testing/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── v1/
│   │   │   │   │   │   │   app_test.py
│   │   │   │   │   │   │   element_tree.py
│   │   │   │   │   │   │   local_script_runner.py
│   │   │   │   │   │   │   util.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   app_test.cpython-310.pyc
│   │   │   │   │   │   │   │   element_tree.cpython-310.pyc
│   │   │   │   │   │   │   │   local_script_runner.cpython-310.pyc
│   │   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── vendor/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── pympler/
│   │   │   │   │   │   │   asizeof.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   asizeof.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── watcher/
│   │   │   │   │   │   event_based_path_watcher.py
│   │   │   │   │   │   folder_black_list.py
│   │   │   │   │   │   local_sources_watcher.py
│   │   │   │   │   │   path_watcher.py
│   │   │   │   │   │   polling_path_watcher.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   event_based_path_watcher.cpython-310.pyc
│   │   │   │   │   │   │   folder_black_list.cpython-310.pyc
│   │   │   │   │   │   │   local_sources_watcher.cpython-310.pyc
│   │   │   │   │   │   │   path_watcher.cpython-310.pyc
│   │   │   │   │   │   │   polling_path_watcher.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── web/
│   │   │   │   │   │   bootstrap.py
│   │   │   │   │   │   cache_storage_manager_config.py
│   │   │   │   │   │   cli.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── server/
│   │   │   │   │   │   │   app_static_file_handler.py
│   │   │   │   │   │   │   authlib_tornado_integration.py
│   │   │   │   │   │   │   bidi_component_request_handler.py
│   │   │   │   │   │   │   browser_websocket_handler.py
│   │   │   │   │   │   │   component_file_utils.py
│   │   │   │   │   │   │   component_request_handler.py
│   │   │   │   │   │   │   media_file_handler.py
│   │   │   │   │   │   │   oauth_authlib_routes.py
│   │   │   │   │   │   │   oidc_mixin.py
│   │   │   │   │   │   │   routes.py
│   │   │   │   │   │   │   server.py
│   │   │   │   │   │   │   server_util.py
│   │   │   │   │   │   │   stats_request_handler.py
│   │   │   │   │   │   │   upload_file_request_handler.py
│   │   │   │   │   │   │   websocket_headers.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   app_static_file_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   authlib_tornado_integration.cpython-310.pyc
│   │   │   │   │   │   │   │   bidi_component_request_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   browser_websocket_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   component_file_utils.cpython-310.pyc
│   │   │   │   │   │   │   │   component_request_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   media_file_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   oauth_authlib_routes.cpython-310.pyc
│   │   │   │   │   │   │   │   oidc_mixin.cpython-310.pyc
│   │   │   │   │   │   │   │   routes.cpython-310.pyc
│   │   │   │   │   │   │   │   server.cpython-310.pyc
│   │   │   │   │   │   │   │   server_util.cpython-310.pyc
│   │   │   │   │   │   │   │   stats_request_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   upload_file_request_handler.cpython-310.pyc
│   │   │   │   │   │   │   │   websocket_headers.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   bootstrap.cpython-310.pyc
│   │   │   │   │   │   │   cache_storage_manager_config.cpython-310.pyc
│   │   │   │   │   │   │   cli.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   auth_util.cpython-310.pyc
│   │   │   │   │   │   cli_util.cpython-310.pyc
│   │   │   │   │   │   column_config.cpython-310.pyc
│   │   │   │   │   │   config.cpython-310.pyc
│   │   │   │   │   │   config_option.cpython-310.pyc
│   │   │   │   │   │   config_util.cpython-310.pyc
│   │   │   │   │   │   cursor.cpython-310.pyc
│   │   │   │   │   │   dataframe_util.cpython-310.pyc
│   │   │   │   │   │   delta_generator.cpython-310.pyc
│   │   │   │   │   │   delta_generator_singletons.cpython-310.pyc
│   │   │   │   │   │   deprecation_util.cpython-310.pyc
│   │   │   │   │   │   development.cpython-310.pyc
│   │   │   │   │   │   emojis.cpython-310.pyc
│   │   │   │   │   │   env_util.cpython-310.pyc
│   │   │   │   │   │   errors.cpython-310.pyc
│   │   │   │   │   │   error_util.cpython-310.pyc
│   │   │   │   │   │   file_util.cpython-310.pyc
│   │   │   │   │   │   git_util.cpython-310.pyc
│   │   │   │   │   │   logger.cpython-310.pyc
│   │   │   │   │   │   material_icon_names.cpython-310.pyc
│   │   │   │   │   │   net_util.cpython-310.pyc
│   │   │   │   │   │   platform.cpython-310.pyc
│   │   │   │   │   │   source_util.cpython-310.pyc
│   │   │   │   │   │   string_util.cpython-310.pyc
│   │   │   │   │   │   temporary_directory.cpython-310.pyc
│   │   │   │   │   │   time_util.cpython-310.pyc
│   │   │   │   │   │   type_util.cpython-310.pyc
│   │   │   │   │   │   url_util.cpython-310.pyc
│   │   │   │   │   │   user_info.cpython-310.pyc
│   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   ├── streamlit-1.51.0.dist-info/
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   REQUESTED
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── tenacity/
│   │   │   │   │   after.py
│   │   │   │   │   before.py
│   │   │   │   │   before_sleep.py
│   │   │   │   │   nap.py
│   │   │   │   │   py.typed
│   │   │   │   │   retry.py
│   │   │   │   │   stop.py
│   │   │   │   │   tornadoweb.py
│   │   │   │   │   wait.py
│   │   │   │   │   _utils.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── asyncio/
│   │   │   │   │   │   retry.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   retry.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   after.cpython-310.pyc
│   │   │   │   │   │   before.cpython-310.pyc
│   │   │   │   │   │   before_sleep.cpython-310.pyc
│   │   │   │   │   │   nap.cpython-310.pyc
│   │   │   │   │   │   retry.cpython-310.pyc
│   │   │   │   │   │   stop.cpython-310.pyc
│   │   │   │   │   │   tornadoweb.cpython-310.pyc
│   │   │   │   │   │   wait.cpython-310.pyc
│   │   │   │   │   │   _utils.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── tenacity-9.1.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── toml/
│   │   │   │   │   decoder.py
│   │   │   │   │   encoder.py
│   │   │   │   │   ordered.py
│   │   │   │   │   tz.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   decoder.cpython-310.pyc
│   │   │   │   │   │   encoder.cpython-310.pyc
│   │   │   │   │   │   ordered.cpython-310.pyc
│   │   │   │   │   │   tz.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── toml-0.10.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── tornado/
│   │   │   │   │   auth.py
│   │   │   │   │   autoreload.py
│   │   │   │   │   concurrent.py
│   │   │   │   │   curl_httpclient.py
│   │   │   │   │   escape.py
│   │   │   │   │   gen.py
│   │   │   │   │   http1connection.py
│   │   │   │   │   httpclient.py
│   │   │   │   │   httpserver.py
│   │   │   │   │   httputil.py
│   │   │   │   │   ioloop.py
│   │   │   │   │   iostream.py
│   │   │   │   │   locale.py
│   │   │   │   │   locks.py
│   │   │   │   │   log.py
│   │   │   │   │   netutil.py
│   │   │   │   │   options.py
│   │   │   │   │   process.py
│   │   │   │   │   py.typed
│   │   │   │   │   queues.py
│   │   │   │   │   routing.py
│   │   │   │   │   simple_httpclient.py
│   │   │   │   │   speedups.pyd
│   │   │   │   │   speedups.pyi
│   │   │   │   │   tcpclient.py
│   │   │   │   │   tcpserver.py
│   │   │   │   │   template.py
│   │   │   │   │   testing.py
│   │   │   │   │   util.py
│   │   │   │   │   web.py
│   │   │   │   │   websocket.py
│   │   │   │   │   wsgi.py
│   │   │   │   │   _locale_data.py
│   │   │   │   │   __init__.py
│   │   │   │   │   __init__.pyi
│   │   │   │   │   ├── platform/
│   │   │   │   │   │   asyncio.py
│   │   │   │   │   │   caresresolver.py
│   │   │   │   │   │   twisted.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   asyncio.cpython-310.pyc
│   │   │   │   │   │   │   caresresolver.cpython-310.pyc
│   │   │   │   │   │   │   twisted.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── test/
│   │   │   │   │   │   asyncio_test.py
│   │   │   │   │   │   auth_test.py
│   │   │   │   │   │   autoreload_test.py
│   │   │   │   │   │   circlerefs_test.py
│   │   │   │   │   │   concurrent_test.py
│   │   │   │   │   │   curl_httpclient_test.py
│   │   │   │   │   │   escape_test.py
│   │   │   │   │   │   gen_test.py
│   │   │   │   │   │   http1connection_test.py
│   │   │   │   │   │   httpclient_test.py
│   │   │   │   │   │   httpserver_test.py
│   │   │   │   │   │   httputil_test.py
│   │   │   │   │   │   import_test.py
│   │   │   │   │   │   ioloop_test.py
│   │   │   │   │   │   iostream_test.py
│   │   │   │   │   │   locale_test.py
│   │   │   │   │   │   locks_test.py
│   │   │   │   │   │   log_test.py
│   │   │   │   │   │   netutil_test.py
│   │   │   │   │   │   options_test.cfg
│   │   │   │   │   │   options_test.py
│   │   │   │   │   │   options_test_types.cfg
│   │   │   │   │   │   options_test_types_str.cfg
│   │   │   │   │   │   process_test.py
│   │   │   │   │   │   queues_test.py
│   │   │   │   │   │   resolve_test_helper.py
│   │   │   │   │   │   routing_test.py
│   │   │   │   │   │   runtests.py
│   │   │   │   │   │   simple_httpclient_test.py
│   │   │   │   │   │   static_foo.txt
│   │   │   │   │   │   tcpclient_test.py
│   │   │   │   │   │   tcpserver_test.py
│   │   │   │   │   │   template_test.py
│   │   │   │   │   │   test.crt
│   │   │   │   │   │   test.key
│   │   │   │   │   │   testing_test.py
│   │   │   │   │   │   twisted_test.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   util_test.py
│   │   │   │   │   │   websocket_test.py
│   │   │   │   │   │   web_test.py
│   │   │   │   │   │   wsgi_test.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   __main__.py
│   │   │   │   │   │   ├── csv_translations/
│   │   │   │   │   │   │   fr_FR.csv
│   │   │   │   │   │   ├── gettext_translations/
│   │   │   │   │   │   │   ├── fr_FR/
│   │   │   │   │   │   │   │   ├── LC_MESSAGES/
│   │   │   │   │   │   │   │   │   tornado_test.mo
│   │   │   │   │   │   │   │   │   tornado_test.po
│   │   │   │   │   │   ├── static/
│   │   │   │   │   │   │   robots.txt
│   │   │   │   │   │   │   sample.xml
│   │   │   │   │   │   │   sample.xml.bz2
│   │   │   │   │   │   │   sample.xml.gz
│   │   │   │   │   │   │   ├── dir/
│   │   │   │   │   │   │   │   index.html
│   │   │   │   │   │   ├── templates/
│   │   │   │   │   │   │   utf8.html
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   asyncio_test.cpython-310.pyc
│   │   │   │   │   │   │   auth_test.cpython-310.pyc
│   │   │   │   │   │   │   autoreload_test.cpython-310.pyc
│   │   │   │   │   │   │   circlerefs_test.cpython-310.pyc
│   │   │   │   │   │   │   concurrent_test.cpython-310.pyc
│   │   │   │   │   │   │   curl_httpclient_test.cpython-310.pyc
│   │   │   │   │   │   │   escape_test.cpython-310.pyc
│   │   │   │   │   │   │   gen_test.cpython-310.pyc
│   │   │   │   │   │   │   http1connection_test.cpython-310.pyc
│   │   │   │   │   │   │   httpclient_test.cpython-310.pyc
│   │   │   │   │   │   │   httpserver_test.cpython-310.pyc
│   │   │   │   │   │   │   httputil_test.cpython-310.pyc
│   │   │   │   │   │   │   import_test.cpython-310.pyc
│   │   │   │   │   │   │   ioloop_test.cpython-310.pyc
│   │   │   │   │   │   │   iostream_test.cpython-310.pyc
│   │   │   │   │   │   │   locale_test.cpython-310.pyc
│   │   │   │   │   │   │   locks_test.cpython-310.pyc
│   │   │   │   │   │   │   log_test.cpython-310.pyc
│   │   │   │   │   │   │   netutil_test.cpython-310.pyc
│   │   │   │   │   │   │   options_test.cpython-310.pyc
│   │   │   │   │   │   │   process_test.cpython-310.pyc
│   │   │   │   │   │   │   queues_test.cpython-310.pyc
│   │   │   │   │   │   │   resolve_test_helper.cpython-310.pyc
│   │   │   │   │   │   │   routing_test.cpython-310.pyc
│   │   │   │   │   │   │   runtests.cpython-310.pyc
│   │   │   │   │   │   │   simple_httpclient_test.cpython-310.pyc
│   │   │   │   │   │   │   tcpclient_test.cpython-310.pyc
│   │   │   │   │   │   │   tcpserver_test.cpython-310.pyc
│   │   │   │   │   │   │   template_test.cpython-310.pyc
│   │   │   │   │   │   │   testing_test.cpython-310.pyc
│   │   │   │   │   │   │   twisted_test.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   util_test.cpython-310.pyc
│   │   │   │   │   │   │   websocket_test.cpython-310.pyc
│   │   │   │   │   │   │   web_test.cpython-310.pyc
│   │   │   │   │   │   │   wsgi_test.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   __main__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   auth.cpython-310.pyc
│   │   │   │   │   │   autoreload.cpython-310.pyc
│   │   │   │   │   │   concurrent.cpython-310.pyc
│   │   │   │   │   │   curl_httpclient.cpython-310.pyc
│   │   │   │   │   │   escape.cpython-310.pyc
│   │   │   │   │   │   gen.cpython-310.pyc
│   │   │   │   │   │   http1connection.cpython-310.pyc
│   │   │   │   │   │   httpclient.cpython-310.pyc
│   │   │   │   │   │   httpserver.cpython-310.pyc
│   │   │   │   │   │   httputil.cpython-310.pyc
│   │   │   │   │   │   ioloop.cpython-310.pyc
│   │   │   │   │   │   iostream.cpython-310.pyc
│   │   │   │   │   │   locale.cpython-310.pyc
│   │   │   │   │   │   locks.cpython-310.pyc
│   │   │   │   │   │   log.cpython-310.pyc
│   │   │   │   │   │   netutil.cpython-310.pyc
│   │   │   │   │   │   options.cpython-310.pyc
│   │   │   │   │   │   process.cpython-310.pyc
│   │   │   │   │   │   queues.cpython-310.pyc
│   │   │   │   │   │   routing.cpython-310.pyc
│   │   │   │   │   │   simple_httpclient.cpython-310.pyc
│   │   │   │   │   │   tcpclient.cpython-310.pyc
│   │   │   │   │   │   tcpserver.cpython-310.pyc
│   │   │   │   │   │   template.cpython-310.pyc
│   │   │   │   │   │   testing.cpython-310.pyc
│   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   web.cpython-310.pyc
│   │   │   │   │   │   websocket.cpython-310.pyc
│   │   │   │   │   │   wsgi.cpython-310.pyc
│   │   │   │   │   │   _locale_data.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── tornado-6.5.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── typing_extensions-4.15.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   ├── tzdata/
│   │   │   │   │   zones
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── zoneinfo/
│   │   │   │   │   │   CET
│   │   │   │   │   │   CST6CDT
│   │   │   │   │   │   Cuba
│   │   │   │   │   │   EET
│   │   │   │   │   │   Egypt
│   │   │   │   │   │   Eire
│   │   │   │   │   │   EST
│   │   │   │   │   │   EST5EDT
│   │   │   │   │   │   Factory
│   │   │   │   │   │   GB
│   │   │   │   │   │   GB-Eire
│   │   │   │   │   │   GMT
│   │   │   │   │   │   GMT+0
│   │   │   │   │   │   GMT-0
│   │   │   │   │   │   GMT0
│   │   │   │   │   │   Greenwich
│   │   │   │   │   │   Hongkong
│   │   │   │   │   │   HST
│   │   │   │   │   │   Iceland
│   │   │   │   │   │   Iran
│   │   │   │   │   │   iso3166.tab
│   │   │   │   │   │   Israel
│   │   │   │   │   │   Jamaica
│   │   │   │   │   │   Japan
│   │   │   │   │   │   Kwajalein
│   │   │   │   │   │   leapseconds
│   │   │   │   │   │   Libya
│   │   │   │   │   │   MET
│   │   │   │   │   │   MST
│   │   │   │   │   │   MST7MDT
│   │   │   │   │   │   Navajo
│   │   │   │   │   │   NZ
│   │   │   │   │   │   NZ-CHAT
│   │   │   │   │   │   Poland
│   │   │   │   │   │   Portugal
│   │   │   │   │   │   PRC
│   │   │   │   │   │   PST8PDT
│   │   │   │   │   │   ROC
│   │   │   │   │   │   ROK
│   │   │   │   │   │   Singapore
│   │   │   │   │   │   Turkey
│   │   │   │   │   │   tzdata.zi
│   │   │   │   │   │   UCT
│   │   │   │   │   │   Universal
│   │   │   │   │   │   UTC
│   │   │   │   │   │   W-SU
│   │   │   │   │   │   WET
│   │   │   │   │   │   zone.tab
│   │   │   │   │   │   zone1970.tab
│   │   │   │   │   │   zonenow.tab
│   │   │   │   │   │   Zulu
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── Africa/
│   │   │   │   │   │   │   Abidjan
│   │   │   │   │   │   │   Accra
│   │   │   │   │   │   │   Addis_Ababa
│   │   │   │   │   │   │   Algiers
│   │   │   │   │   │   │   Asmara
│   │   │   │   │   │   │   Asmera
│   │   │   │   │   │   │   Bamako
│   │   │   │   │   │   │   Bangui
│   │   │   │   │   │   │   Banjul
│   │   │   │   │   │   │   Bissau
│   │   │   │   │   │   │   Blantyre
│   │   │   │   │   │   │   Brazzaville
│   │   │   │   │   │   │   Bujumbura
│   │   │   │   │   │   │   Cairo
│   │   │   │   │   │   │   Casablanca
│   │   │   │   │   │   │   Ceuta
│   │   │   │   │   │   │   Conakry
│   │   │   │   │   │   │   Dakar
│   │   │   │   │   │   │   Dar_es_Salaam
│   │   │   │   │   │   │   Djibouti
│   │   │   │   │   │   │   Douala
│   │   │   │   │   │   │   El_Aaiun
│   │   │   │   │   │   │   Freetown
│   │   │   │   │   │   │   Gaborone
│   │   │   │   │   │   │   Harare
│   │   │   │   │   │   │   Johannesburg
│   │   │   │   │   │   │   Juba
│   │   │   │   │   │   │   Kampala
│   │   │   │   │   │   │   Khartoum
│   │   │   │   │   │   │   Kigali
│   │   │   │   │   │   │   Kinshasa
│   │   │   │   │   │   │   Lagos
│   │   │   │   │   │   │   Libreville
│   │   │   │   │   │   │   Lome
│   │   │   │   │   │   │   Luanda
│   │   │   │   │   │   │   Lubumbashi
│   │   │   │   │   │   │   Lusaka
│   │   │   │   │   │   │   Malabo
│   │   │   │   │   │   │   Maputo
│   │   │   │   │   │   │   Maseru
│   │   │   │   │   │   │   Mbabane
│   │   │   │   │   │   │   Mogadishu
│   │   │   │   │   │   │   Monrovia
│   │   │   │   │   │   │   Nairobi
│   │   │   │   │   │   │   Ndjamena
│   │   │   │   │   │   │   Niamey
│   │   │   │   │   │   │   Nouakchott
│   │   │   │   │   │   │   Ouagadougou
│   │   │   │   │   │   │   Porto-Novo
│   │   │   │   │   │   │   Sao_Tome
│   │   │   │   │   │   │   Timbuktu
│   │   │   │   │   │   │   Tripoli
│   │   │   │   │   │   │   Tunis
│   │   │   │   │   │   │   Windhoek
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── America/
│   │   │   │   │   │   │   Adak
│   │   │   │   │   │   │   Anchorage
│   │   │   │   │   │   │   Anguilla
│   │   │   │   │   │   │   Antigua
│   │   │   │   │   │   │   Araguaina
│   │   │   │   │   │   │   Aruba
│   │   │   │   │   │   │   Asuncion
│   │   │   │   │   │   │   Atikokan
│   │   │   │   │   │   │   Atka
│   │   │   │   │   │   │   Bahia
│   │   │   │   │   │   │   Bahia_Banderas
│   │   │   │   │   │   │   Barbados
│   │   │   │   │   │   │   Belem
│   │   │   │   │   │   │   Belize
│   │   │   │   │   │   │   Blanc-Sablon
│   │   │   │   │   │   │   Boa_Vista
│   │   │   │   │   │   │   Bogota
│   │   │   │   │   │   │   Boise
│   │   │   │   │   │   │   Buenos_Aires
│   │   │   │   │   │   │   Cambridge_Bay
│   │   │   │   │   │   │   Campo_Grande
│   │   │   │   │   │   │   Cancun
│   │   │   │   │   │   │   Caracas
│   │   │   │   │   │   │   Catamarca
│   │   │   │   │   │   │   Cayenne
│   │   │   │   │   │   │   Cayman
│   │   │   │   │   │   │   Chicago
│   │   │   │   │   │   │   Chihuahua
│   │   │   │   │   │   │   Ciudad_Juarez
│   │   │   │   │   │   │   Coral_Harbour
│   │   │   │   │   │   │   Cordoba
│   │   │   │   │   │   │   Costa_Rica
│   │   │   │   │   │   │   Coyhaique
│   │   │   │   │   │   │   Creston
│   │   │   │   │   │   │   Cuiaba
│   │   │   │   │   │   │   Curacao
│   │   │   │   │   │   │   Danmarkshavn
│   │   │   │   │   │   │   Dawson
│   │   │   │   │   │   │   Dawson_Creek
│   │   │   │   │   │   │   Denver
│   │   │   │   │   │   │   Detroit
│   │   │   │   │   │   │   Dominica
│   │   │   │   │   │   │   Edmonton
│   │   │   │   │   │   │   Eirunepe
│   │   │   │   │   │   │   El_Salvador
│   │   │   │   │   │   │   Ensenada
│   │   │   │   │   │   │   Fortaleza
│   │   │   │   │   │   │   Fort_Nelson
│   │   │   │   │   │   │   Fort_Wayne
│   │   │   │   │   │   │   Glace_Bay
│   │   │   │   │   │   │   Godthab
│   │   │   │   │   │   │   Goose_Bay
│   │   │   │   │   │   │   Grand_Turk
│   │   │   │   │   │   │   Grenada
│   │   │   │   │   │   │   Guadeloupe
│   │   │   │   │   │   │   Guatemala
│   │   │   │   │   │   │   Guayaquil
│   │   │   │   │   │   │   Guyana
│   │   │   │   │   │   │   Halifax
│   │   │   │   │   │   │   Havana
│   │   │   │   │   │   │   Hermosillo
│   │   │   │   │   │   │   Indianapolis
│   │   │   │   │   │   │   Inuvik
│   │   │   │   │   │   │   Iqaluit
│   │   │   │   │   │   │   Jamaica
│   │   │   │   │   │   │   Jujuy
│   │   │   │   │   │   │   Juneau
│   │   │   │   │   │   │   Knox_IN
│   │   │   │   │   │   │   Kralendijk
│   │   │   │   │   │   │   La_Paz
│   │   │   │   │   │   │   Lima
│   │   │   │   │   │   │   Los_Angeles
│   │   │   │   │   │   │   Louisville
│   │   │   │   │   │   │   Lower_Princes
│   │   │   │   │   │   │   Maceio
│   │   │   │   │   │   │   Managua
│   │   │   │   │   │   │   Manaus
│   │   │   │   │   │   │   Marigot
│   │   │   │   │   │   │   Martinique
│   │   │   │   │   │   │   Matamoros
│   │   │   │   │   │   │   Mazatlan
│   │   │   │   │   │   │   Mendoza
│   │   │   │   │   │   │   Menominee
│   │   │   │   │   │   │   Merida
│   │   │   │   │   │   │   Metlakatla
│   │   │   │   │   │   │   Mexico_City
│   │   │   │   │   │   │   Miquelon
│   │   │   │   │   │   │   Moncton
│   │   │   │   │   │   │   Monterrey
│   │   │   │   │   │   │   Montevideo
│   │   │   │   │   │   │   Montreal
│   │   │   │   │   │   │   Montserrat
│   │   │   │   │   │   │   Nassau
│   │   │   │   │   │   │   New_York
│   │   │   │   │   │   │   Nipigon
│   │   │   │   │   │   │   Nome
│   │   │   │   │   │   │   Noronha
│   │   │   │   │   │   │   Nuuk
│   │   │   │   │   │   │   Ojinaga
│   │   │   │   │   │   │   Panama
│   │   │   │   │   │   │   Pangnirtung
│   │   │   │   │   │   │   Paramaribo
│   │   │   │   │   │   │   Phoenix
│   │   │   │   │   │   │   Port-au-Prince
│   │   │   │   │   │   │   Porto_Acre
│   │   │   │   │   │   │   Porto_Velho
│   │   │   │   │   │   │   Port_of_Spain
│   │   │   │   │   │   │   Puerto_Rico
│   │   │   │   │   │   │   Punta_Arenas
│   │   │   │   │   │   │   Rainy_River
│   │   │   │   │   │   │   Rankin_Inlet
│   │   │   │   │   │   │   Recife
│   │   │   │   │   │   │   Regina
│   │   │   │   │   │   │   Resolute
│   │   │   │   │   │   │   Rio_Branco
│   │   │   │   │   │   │   Rosario
│   │   │   │   │   │   │   Santarem
│   │   │   │   │   │   │   Santa_Isabel
│   │   │   │   │   │   │   Santiago
│   │   │   │   │   │   │   Santo_Domingo
│   │   │   │   │   │   │   Sao_Paulo
│   │   │   │   │   │   │   Scoresbysund
│   │   │   │   │   │   │   Shiprock
│   │   │   │   │   │   │   Sitka
│   │   │   │   │   │   │   St_Barthelemy
│   │   │   │   │   │   │   St_Johns
│   │   │   │   │   │   │   St_Kitts
│   │   │   │   │   │   │   St_Lucia
│   │   │   │   │   │   │   St_Thomas
│   │   │   │   │   │   │   St_Vincent
│   │   │   │   │   │   │   Swift_Current
│   │   │   │   │   │   │   Tegucigalpa
│   │   │   │   │   │   │   Thule
│   │   │   │   │   │   │   Thunder_Bay
│   │   │   │   │   │   │   Tijuana
│   │   │   │   │   │   │   Toronto
│   │   │   │   │   │   │   Tortola
│   │   │   │   │   │   │   Vancouver
│   │   │   │   │   │   │   Virgin
│   │   │   │   │   │   │   Whitehorse
│   │   │   │   │   │   │   Winnipeg
│   │   │   │   │   │   │   Yakutat
│   │   │   │   │   │   │   Yellowknife
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── Argentina/
│   │   │   │   │   │   │   │   Buenos_Aires
│   │   │   │   │   │   │   │   Catamarca
│   │   │   │   │   │   │   │   ComodRivadavia
│   │   │   │   │   │   │   │   Cordoba
│   │   │   │   │   │   │   │   Jujuy
│   │   │   │   │   │   │   │   La_Rioja
│   │   │   │   │   │   │   │   Mendoza
│   │   │   │   │   │   │   │   Rio_Gallegos
│   │   │   │   │   │   │   │   Salta
│   │   │   │   │   │   │   │   San_Juan
│   │   │   │   │   │   │   │   San_Luis
│   │   │   │   │   │   │   │   Tucuman
│   │   │   │   │   │   │   │   Ushuaia
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── Indiana/
│   │   │   │   │   │   │   │   Indianapolis
│   │   │   │   │   │   │   │   Knox
│   │   │   │   │   │   │   │   Marengo
│   │   │   │   │   │   │   │   Petersburg
│   │   │   │   │   │   │   │   Tell_City
│   │   │   │   │   │   │   │   Vevay
│   │   │   │   │   │   │   │   Vincennes
│   │   │   │   │   │   │   │   Winamac
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── Kentucky/
│   │   │   │   │   │   │   │   Louisville
│   │   │   │   │   │   │   │   Monticello
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── North_Dakota/
│   │   │   │   │   │   │   │   Beulah
│   │   │   │   │   │   │   │   Center
│   │   │   │   │   │   │   │   New_Salem
│   │   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Antarctica/
│   │   │   │   │   │   │   Casey
│   │   │   │   │   │   │   Davis
│   │   │   │   │   │   │   DumontDUrville
│   │   │   │   │   │   │   Macquarie
│   │   │   │   │   │   │   Mawson
│   │   │   │   │   │   │   McMurdo
│   │   │   │   │   │   │   Palmer
│   │   │   │   │   │   │   Rothera
│   │   │   │   │   │   │   South_Pole
│   │   │   │   │   │   │   Syowa
│   │   │   │   │   │   │   Troll
│   │   │   │   │   │   │   Vostok
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Arctic/
│   │   │   │   │   │   │   Longyearbyen
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Asia/
│   │   │   │   │   │   │   Aden
│   │   │   │   │   │   │   Almaty
│   │   │   │   │   │   │   Amman
│   │   │   │   │   │   │   Anadyr
│   │   │   │   │   │   │   Aqtau
│   │   │   │   │   │   │   Aqtobe
│   │   │   │   │   │   │   Ashgabat
│   │   │   │   │   │   │   Ashkhabad
│   │   │   │   │   │   │   Atyrau
│   │   │   │   │   │   │   Baghdad
│   │   │   │   │   │   │   Bahrain
│   │   │   │   │   │   │   Baku
│   │   │   │   │   │   │   Bangkok
│   │   │   │   │   │   │   Barnaul
│   │   │   │   │   │   │   Beirut
│   │   │   │   │   │   │   Bishkek
│   │   │   │   │   │   │   Brunei
│   │   │   │   │   │   │   Calcutta
│   │   │   │   │   │   │   Chita
│   │   │   │   │   │   │   Choibalsan
│   │   │   │   │   │   │   Chongqing
│   │   │   │   │   │   │   Chungking
│   │   │   │   │   │   │   Colombo
│   │   │   │   │   │   │   Dacca
│   │   │   │   │   │   │   Damascus
│   │   │   │   │   │   │   Dhaka
│   │   │   │   │   │   │   Dili
│   │   │   │   │   │   │   Dubai
│   │   │   │   │   │   │   Dushanbe
│   │   │   │   │   │   │   Famagusta
│   │   │   │   │   │   │   Gaza
│   │   │   │   │   │   │   Harbin
│   │   │   │   │   │   │   Hebron
│   │   │   │   │   │   │   Hong_Kong
│   │   │   │   │   │   │   Hovd
│   │   │   │   │   │   │   Ho_Chi_Minh
│   │   │   │   │   │   │   Irkutsk
│   │   │   │   │   │   │   Istanbul
│   │   │   │   │   │   │   Jakarta
│   │   │   │   │   │   │   Jayapura
│   │   │   │   │   │   │   Jerusalem
│   │   │   │   │   │   │   Kabul
│   │   │   │   │   │   │   Kamchatka
│   │   │   │   │   │   │   Karachi
│   │   │   │   │   │   │   Kashgar
│   │   │   │   │   │   │   Kathmandu
│   │   │   │   │   │   │   Katmandu
│   │   │   │   │   │   │   Khandyga
│   │   │   │   │   │   │   Kolkata
│   │   │   │   │   │   │   Krasnoyarsk
│   │   │   │   │   │   │   Kuala_Lumpur
│   │   │   │   │   │   │   Kuching
│   │   │   │   │   │   │   Kuwait
│   │   │   │   │   │   │   Macao
│   │   │   │   │   │   │   Macau
│   │   │   │   │   │   │   Magadan
│   │   │   │   │   │   │   Makassar
│   │   │   │   │   │   │   Manila
│   │   │   │   │   │   │   Muscat
│   │   │   │   │   │   │   Nicosia
│   │   │   │   │   │   │   Novokuznetsk
│   │   │   │   │   │   │   Novosibirsk
│   │   │   │   │   │   │   Omsk
│   │   │   │   │   │   │   Oral
│   │   │   │   │   │   │   Phnom_Penh
│   │   │   │   │   │   │   Pontianak
│   │   │   │   │   │   │   Pyongyang
│   │   │   │   │   │   │   Qatar
│   │   │   │   │   │   │   Qostanay
│   │   │   │   │   │   │   Qyzylorda
│   │   │   │   │   │   │   Rangoon
│   │   │   │   │   │   │   Riyadh
│   │   │   │   │   │   │   Saigon
│   │   │   │   │   │   │   Sakhalin
│   │   │   │   │   │   │   Samarkand
│   │   │   │   │   │   │   Seoul
│   │   │   │   │   │   │   Shanghai
│   │   │   │   │   │   │   Singapore
│   │   │   │   │   │   │   Srednekolymsk
│   │   │   │   │   │   │   Taipei
│   │   │   │   │   │   │   Tashkent
│   │   │   │   │   │   │   Tbilisi
│   │   │   │   │   │   │   Tehran
│   │   │   │   │   │   │   Tel_Aviv
│   │   │   │   │   │   │   Thimbu
│   │   │   │   │   │   │   Thimphu
│   │   │   │   │   │   │   Tokyo
│   │   │   │   │   │   │   Tomsk
│   │   │   │   │   │   │   Ujung_Pandang
│   │   │   │   │   │   │   Ulaanbaatar
│   │   │   │   │   │   │   Ulan_Bator
│   │   │   │   │   │   │   Urumqi
│   │   │   │   │   │   │   Ust-Nera
│   │   │   │   │   │   │   Vientiane
│   │   │   │   │   │   │   Vladivostok
│   │   │   │   │   │   │   Yakutsk
│   │   │   │   │   │   │   Yangon
│   │   │   │   │   │   │   Yekaterinburg
│   │   │   │   │   │   │   Yerevan
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Atlantic/
│   │   │   │   │   │   │   Azores
│   │   │   │   │   │   │   Bermuda
│   │   │   │   │   │   │   Canary
│   │   │   │   │   │   │   Cape_Verde
│   │   │   │   │   │   │   Faeroe
│   │   │   │   │   │   │   Faroe
│   │   │   │   │   │   │   Jan_Mayen
│   │   │   │   │   │   │   Madeira
│   │   │   │   │   │   │   Reykjavik
│   │   │   │   │   │   │   South_Georgia
│   │   │   │   │   │   │   Stanley
│   │   │   │   │   │   │   St_Helena
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Australia/
│   │   │   │   │   │   │   ACT
│   │   │   │   │   │   │   Adelaide
│   │   │   │   │   │   │   Brisbane
│   │   │   │   │   │   │   Broken_Hill
│   │   │   │   │   │   │   Canberra
│   │   │   │   │   │   │   Currie
│   │   │   │   │   │   │   Darwin
│   │   │   │   │   │   │   Eucla
│   │   │   │   │   │   │   Hobart
│   │   │   │   │   │   │   LHI
│   │   │   │   │   │   │   Lindeman
│   │   │   │   │   │   │   Lord_Howe
│   │   │   │   │   │   │   Melbourne
│   │   │   │   │   │   │   North
│   │   │   │   │   │   │   NSW
│   │   │   │   │   │   │   Perth
│   │   │   │   │   │   │   Queensland
│   │   │   │   │   │   │   South
│   │   │   │   │   │   │   Sydney
│   │   │   │   │   │   │   Tasmania
│   │   │   │   │   │   │   Victoria
│   │   │   │   │   │   │   West
│   │   │   │   │   │   │   Yancowinna
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Brazil/
│   │   │   │   │   │   │   Acre
│   │   │   │   │   │   │   DeNoronha
│   │   │   │   │   │   │   East
│   │   │   │   │   │   │   West
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Canada/
│   │   │   │   │   │   │   Atlantic
│   │   │   │   │   │   │   Central
│   │   │   │   │   │   │   Eastern
│   │   │   │   │   │   │   Mountain
│   │   │   │   │   │   │   Newfoundland
│   │   │   │   │   │   │   Pacific
│   │   │   │   │   │   │   Saskatchewan
│   │   │   │   │   │   │   Yukon
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Chile/
│   │   │   │   │   │   │   Continental
│   │   │   │   │   │   │   EasterIsland
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Etc/
│   │   │   │   │   │   │   GMT
│   │   │   │   │   │   │   GMT+0
│   │   │   │   │   │   │   GMT+1
│   │   │   │   │   │   │   GMT+10
│   │   │   │   │   │   │   GMT+11
│   │   │   │   │   │   │   GMT+12
│   │   │   │   │   │   │   GMT+2
│   │   │   │   │   │   │   GMT+3
│   │   │   │   │   │   │   GMT+4
│   │   │   │   │   │   │   GMT+5
│   │   │   │   │   │   │   GMT+6
│   │   │   │   │   │   │   GMT+7
│   │   │   │   │   │   │   GMT+8
│   │   │   │   │   │   │   GMT+9
│   │   │   │   │   │   │   GMT-0
│   │   │   │   │   │   │   GMT-1
│   │   │   │   │   │   │   GMT-10
│   │   │   │   │   │   │   GMT-11
│   │   │   │   │   │   │   GMT-12
│   │   │   │   │   │   │   GMT-13
│   │   │   │   │   │   │   GMT-14
│   │   │   │   │   │   │   GMT-2
│   │   │   │   │   │   │   GMT-3
│   │   │   │   │   │   │   GMT-4
│   │   │   │   │   │   │   GMT-5
│   │   │   │   │   │   │   GMT-6
│   │   │   │   │   │   │   GMT-7
│   │   │   │   │   │   │   GMT-8
│   │   │   │   │   │   │   GMT-9
│   │   │   │   │   │   │   GMT0
│   │   │   │   │   │   │   Greenwich
│   │   │   │   │   │   │   UCT
│   │   │   │   │   │   │   Universal
│   │   │   │   │   │   │   UTC
│   │   │   │   │   │   │   Zulu
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Europe/
│   │   │   │   │   │   │   Amsterdam
│   │   │   │   │   │   │   Andorra
│   │   │   │   │   │   │   Astrakhan
│   │   │   │   │   │   │   Athens
│   │   │   │   │   │   │   Belfast
│   │   │   │   │   │   │   Belgrade
│   │   │   │   │   │   │   Berlin
│   │   │   │   │   │   │   Bratislava
│   │   │   │   │   │   │   Brussels
│   │   │   │   │   │   │   Bucharest
│   │   │   │   │   │   │   Budapest
│   │   │   │   │   │   │   Busingen
│   │   │   │   │   │   │   Chisinau
│   │   │   │   │   │   │   Copenhagen
│   │   │   │   │   │   │   Dublin
│   │   │   │   │   │   │   Gibraltar
│   │   │   │   │   │   │   Guernsey
│   │   │   │   │   │   │   Helsinki
│   │   │   │   │   │   │   Isle_of_Man
│   │   │   │   │   │   │   Istanbul
│   │   │   │   │   │   │   Jersey
│   │   │   │   │   │   │   Kaliningrad
│   │   │   │   │   │   │   Kiev
│   │   │   │   │   │   │   Kirov
│   │   │   │   │   │   │   Kyiv
│   │   │   │   │   │   │   Lisbon
│   │   │   │   │   │   │   Ljubljana
│   │   │   │   │   │   │   London
│   │   │   │   │   │   │   Luxembourg
│   │   │   │   │   │   │   Madrid
│   │   │   │   │   │   │   Malta
│   │   │   │   │   │   │   Mariehamn
│   │   │   │   │   │   │   Minsk
│   │   │   │   │   │   │   Monaco
│   │   │   │   │   │   │   Moscow
│   │   │   │   │   │   │   Nicosia
│   │   │   │   │   │   │   Oslo
│   │   │   │   │   │   │   Paris
│   │   │   │   │   │   │   Podgorica
│   │   │   │   │   │   │   Prague
│   │   │   │   │   │   │   Riga
│   │   │   │   │   │   │   Rome
│   │   │   │   │   │   │   Samara
│   │   │   │   │   │   │   San_Marino
│   │   │   │   │   │   │   Sarajevo
│   │   │   │   │   │   │   Saratov
│   │   │   │   │   │   │   Simferopol
│   │   │   │   │   │   │   Skopje
│   │   │   │   │   │   │   Sofia
│   │   │   │   │   │   │   Stockholm
│   │   │   │   │   │   │   Tallinn
│   │   │   │   │   │   │   Tirane
│   │   │   │   │   │   │   Tiraspol
│   │   │   │   │   │   │   Ulyanovsk
│   │   │   │   │   │   │   Uzhgorod
│   │   │   │   │   │   │   Vaduz
│   │   │   │   │   │   │   Vatican
│   │   │   │   │   │   │   Vienna
│   │   │   │   │   │   │   Vilnius
│   │   │   │   │   │   │   Volgograd
│   │   │   │   │   │   │   Warsaw
│   │   │   │   │   │   │   Zagreb
│   │   │   │   │   │   │   Zaporozhye
│   │   │   │   │   │   │   Zurich
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Indian/
│   │   │   │   │   │   │   Antananarivo
│   │   │   │   │   │   │   Chagos
│   │   │   │   │   │   │   Christmas
│   │   │   │   │   │   │   Cocos
│   │   │   │   │   │   │   Comoro
│   │   │   │   │   │   │   Kerguelen
│   │   │   │   │   │   │   Mahe
│   │   │   │   │   │   │   Maldives
│   │   │   │   │   │   │   Mauritius
│   │   │   │   │   │   │   Mayotte
│   │   │   │   │   │   │   Reunion
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Mexico/
│   │   │   │   │   │   │   BajaNorte
│   │   │   │   │   │   │   BajaSur
│   │   │   │   │   │   │   General
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── Pacific/
│   │   │   │   │   │   │   Apia
│   │   │   │   │   │   │   Auckland
│   │   │   │   │   │   │   Bougainville
│   │   │   │   │   │   │   Chatham
│   │   │   │   │   │   │   Chuuk
│   │   │   │   │   │   │   Easter
│   │   │   │   │   │   │   Efate
│   │   │   │   │   │   │   Enderbury
│   │   │   │   │   │   │   Fakaofo
│   │   │   │   │   │   │   Fiji
│   │   │   │   │   │   │   Funafuti
│   │   │   │   │   │   │   Galapagos
│   │   │   │   │   │   │   Gambier
│   │   │   │   │   │   │   Guadalcanal
│   │   │   │   │   │   │   Guam
│   │   │   │   │   │   │   Honolulu
│   │   │   │   │   │   │   Johnston
│   │   │   │   │   │   │   Kanton
│   │   │   │   │   │   │   Kiritimati
│   │   │   │   │   │   │   Kosrae
│   │   │   │   │   │   │   Kwajalein
│   │   │   │   │   │   │   Majuro
│   │   │   │   │   │   │   Marquesas
│   │   │   │   │   │   │   Midway
│   │   │   │   │   │   │   Nauru
│   │   │   │   │   │   │   Niue
│   │   │   │   │   │   │   Norfolk
│   │   │   │   │   │   │   Noumea
│   │   │   │   │   │   │   Pago_Pago
│   │   │   │   │   │   │   Palau
│   │   │   │   │   │   │   Pitcairn
│   │   │   │   │   │   │   Pohnpei
│   │   │   │   │   │   │   Ponape
│   │   │   │   │   │   │   Port_Moresby
│   │   │   │   │   │   │   Rarotonga
│   │   │   │   │   │   │   Saipan
│   │   │   │   │   │   │   Samoa
│   │   │   │   │   │   │   Tahiti
│   │   │   │   │   │   │   Tarawa
│   │   │   │   │   │   │   Tongatapu
│   │   │   │   │   │   │   Truk
│   │   │   │   │   │   │   Wake
│   │   │   │   │   │   │   Wallis
│   │   │   │   │   │   │   Yap
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── US/
│   │   │   │   │   │   │   Alaska
│   │   │   │   │   │   │   Aleutian
│   │   │   │   │   │   │   Arizona
│   │   │   │   │   │   │   Central
│   │   │   │   │   │   │   East-Indiana
│   │   │   │   │   │   │   Eastern
│   │   │   │   │   │   │   Hawaii
│   │   │   │   │   │   │   Indiana-Starke
│   │   │   │   │   │   │   Michigan
│   │   │   │   │   │   │   Mountain
│   │   │   │   │   │   │   Pacific
│   │   │   │   │   │   │   Samoa
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── tzdata-2025.2.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE
│   │   │   │   │   │   ├── licenses/
│   │   │   │   │   │   │   LICENSE_APACHE
│   │   │   │   ├── urllib3/
│   │   │   │   │   connection.py
│   │   │   │   │   connectionpool.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   fields.py
│   │   │   │   │   filepost.py
│   │   │   │   │   poolmanager.py
│   │   │   │   │   py.typed
│   │   │   │   │   response.py
│   │   │   │   │   _base_connection.py
│   │   │   │   │   _collections.py
│   │   │   │   │   _request_methods.py
│   │   │   │   │   _version.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── contrib/
│   │   │   │   │   │   pyopenssl.py
│   │   │   │   │   │   socks.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── emscripten/
│   │   │   │   │   │   │   connection.py
│   │   │   │   │   │   │   emscripten_fetch_worker.js
│   │   │   │   │   │   │   fetch.py
│   │   │   │   │   │   │   request.py
│   │   │   │   │   │   │   response.py
│   │   │   │   │   │   │   __init__.py
│   │   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   │   connection.cpython-310.pyc
│   │   │   │   │   │   │   │   fetch.cpython-310.pyc
│   │   │   │   │   │   │   │   request.cpython-310.pyc
│   │   │   │   │   │   │   │   response.cpython-310.pyc
│   │   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   pyopenssl.cpython-310.pyc
│   │   │   │   │   │   │   socks.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── http2/
│   │   │   │   │   │   connection.py
│   │   │   │   │   │   probe.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   connection.cpython-310.pyc
│   │   │   │   │   │   │   probe.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── util/
│   │   │   │   │   │   connection.py
│   │   │   │   │   │   proxy.py
│   │   │   │   │   │   request.py
│   │   │   │   │   │   response.py
│   │   │   │   │   │   retry.py
│   │   │   │   │   │   ssltransport.py
│   │   │   │   │   │   ssl_.py
│   │   │   │   │   │   ssl_match_hostname.py
│   │   │   │   │   │   timeout.py
│   │   │   │   │   │   url.py
│   │   │   │   │   │   util.py
│   │   │   │   │   │   wait.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   connection.cpython-310.pyc
│   │   │   │   │   │   │   proxy.cpython-310.pyc
│   │   │   │   │   │   │   request.cpython-310.pyc
│   │   │   │   │   │   │   response.cpython-310.pyc
│   │   │   │   │   │   │   retry.cpython-310.pyc
│   │   │   │   │   │   │   ssltransport.cpython-310.pyc
│   │   │   │   │   │   │   ssl_.cpython-310.pyc
│   │   │   │   │   │   │   ssl_match_hostname.cpython-310.pyc
│   │   │   │   │   │   │   timeout.cpython-310.pyc
│   │   │   │   │   │   │   url.cpython-310.pyc
│   │   │   │   │   │   │   util.cpython-310.pyc
│   │   │   │   │   │   │   wait.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   connection.cpython-310.pyc
│   │   │   │   │   │   connectionpool.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   fields.cpython-310.pyc
│   │   │   │   │   │   filepost.cpython-310.pyc
│   │   │   │   │   │   poolmanager.cpython-310.pyc
│   │   │   │   │   │   response.cpython-310.pyc
│   │   │   │   │   │   _base_connection.cpython-310.pyc
│   │   │   │   │   │   _collections.cpython-310.pyc
│   │   │   │   │   │   _request_methods.cpython-310.pyc
│   │   │   │   │   │   _version.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── urllib3-2.5.0.dist-info/
│   │   │   │   │   INSTALLER
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   WHEEL
│   │   │   │   │   ├── licenses/
│   │   │   │   │   │   LICENSE.txt
│   │   │   │   ├── watchdog/
│   │   │   │   │   events.py
│   │   │   │   │   py.typed
│   │   │   │   │   version.py
│   │   │   │   │   watchmedo.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── observers/
│   │   │   │   │   │   api.py
│   │   │   │   │   │   fsevents.py
│   │   │   │   │   │   fsevents2.py
│   │   │   │   │   │   inotify.py
│   │   │   │   │   │   inotify_buffer.py
│   │   │   │   │   │   inotify_c.py
│   │   │   │   │   │   kqueue.py
│   │   │   │   │   │   polling.py
│   │   │   │   │   │   read_directory_changes.py
│   │   │   │   │   │   winapi.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   api.cpython-310.pyc
│   │   │   │   │   │   │   fsevents.cpython-310.pyc
│   │   │   │   │   │   │   fsevents2.cpython-310.pyc
│   │   │   │   │   │   │   inotify.cpython-310.pyc
│   │   │   │   │   │   │   inotify_buffer.cpython-310.pyc
│   │   │   │   │   │   │   inotify_c.cpython-310.pyc
│   │   │   │   │   │   │   kqueue.cpython-310.pyc
│   │   │   │   │   │   │   polling.cpython-310.pyc
│   │   │   │   │   │   │   read_directory_changes.cpython-310.pyc
│   │   │   │   │   │   │   winapi.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── tricks/
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── utils/
│   │   │   │   │   │   bricks.py
│   │   │   │   │   │   delayed_queue.py
│   │   │   │   │   │   dirsnapshot.py
│   │   │   │   │   │   echo.py
│   │   │   │   │   │   event_debouncer.py
│   │   │   │   │   │   patterns.py
│   │   │   │   │   │   platform.py
│   │   │   │   │   │   process_watcher.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   bricks.cpython-310.pyc
│   │   │   │   │   │   │   delayed_queue.cpython-310.pyc
│   │   │   │   │   │   │   dirsnapshot.cpython-310.pyc
│   │   │   │   │   │   │   echo.cpython-310.pyc
│   │   │   │   │   │   │   event_debouncer.cpython-310.pyc
│   │   │   │   │   │   │   patterns.cpython-310.pyc
│   │   │   │   │   │   │   platform.cpython-310.pyc
│   │   │   │   │   │   │   process_watcher.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   events.cpython-310.pyc
│   │   │   │   │   │   version.cpython-310.pyc
│   │   │   │   │   │   watchmedo.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── watchdog-6.0.0.dist-info/
│   │   │   │   │   AUTHORS
│   │   │   │   │   COPYING
│   │   │   │   │   entry_points.txt
│   │   │   │   │   INSTALLER
│   │   │   │   │   LICENSE
│   │   │   │   │   METADATA
│   │   │   │   │   RECORD
│   │   │   │   │   top_level.txt
│   │   │   │   │   WHEEL
│   │   │   │   ├── _distutils_hack/
│   │   │   │   │   override.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   override.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── _plotly_utils/
│   │   │   │   │   basevalidators.py
│   │   │   │   │   data_utils.py
│   │   │   │   │   exceptions.py
│   │   │   │   │   files.py
│   │   │   │   │   importers.py
│   │   │   │   │   optional_imports.py
│   │   │   │   │   png.py
│   │   │   │   │   utils.py
│   │   │   │   │   __init__.py
│   │   │   │   │   ├── colors/
│   │   │   │   │   │   carto.py
│   │   │   │   │   │   cmocean.py
│   │   │   │   │   │   colorbrewer.py
│   │   │   │   │   │   cyclical.py
│   │   │   │   │   │   diverging.py
│   │   │   │   │   │   plotlyjs.py
│   │   │   │   │   │   qualitative.py
│   │   │   │   │   │   sequential.py
│   │   │   │   │   │   _swatches.py
│   │   │   │   │   │   __init__.py
│   │   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   │   carto.cpython-310.pyc
│   │   │   │   │   │   │   cmocean.cpython-310.pyc
│   │   │   │   │   │   │   colorbrewer.cpython-310.pyc
│   │   │   │   │   │   │   cyclical.cpython-310.pyc
│   │   │   │   │   │   │   diverging.cpython-310.pyc
│   │   │   │   │   │   │   plotlyjs.cpython-310.pyc
│   │   │   │   │   │   │   qualitative.cpython-310.pyc
│   │   │   │   │   │   │   sequential.cpython-310.pyc
│   │   │   │   │   │   │   _swatches.cpython-310.pyc
│   │   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   │   ├── __pycache__/
│   │   │   │   │   │   basevalidators.cpython-310.pyc
│   │   │   │   │   │   data_utils.cpython-310.pyc
│   │   │   │   │   │   exceptions.cpython-310.pyc
│   │   │   │   │   │   files.cpython-310.pyc
│   │   │   │   │   │   importers.cpython-310.pyc
│   │   │   │   │   │   optional_imports.cpython-310.pyc
│   │   │   │   │   │   png.cpython-310.pyc
│   │   │   │   │   │   utils.cpython-310.pyc
│   │   │   │   │   │   __init__.cpython-310.pyc
│   │   │   │   ├── __pycache__/
│   │   │   │   │   pylab.cpython-310.pyc
│   │   │   │   │   six.cpython-310.pyc
│   │   │   │   │   typing_extensions.cpython-310.pyc
│   │   ├── Scripts/
│   │   │   activate
│   │   │   activate.bat
│   │   │   Activate.ps1
│   │   │   deactivate.bat
│   │   │   f2py.exe
│   │   │   fonttools.exe
│   │   │   jsonschema.exe
│   │   │   normalizer.exe
│   │   │   numpy-config.exe
│   │   │   pip.exe
│   │   │   pip3.10.exe
│   │   │   pip3.exe
│   │   │   plotly_get_chrome.exe
│   │   │   pyftmerge.exe
│   │   │   pyftsubset.exe
│   │   │   python.exe
│   │   │   pythonw.exe
│   │   │   pythonw_d.exe
│   │   │   python_d.exe
│   │   │   streamlit.cmd
│   │   │   streamlit.exe
│   │   │   ttx.exe
│   │   │   watchmedo.exe
│   │   ├── share/
│   │   │   ├── jupyter/
│   │   │   │   ├── labextensions/
│   │   │   │   │   ├── jupyterlab-plotly/
│   │   │   │   │   │   install.json
│   │   │   │   │   │   package.json
│   │   │   │   │   │   ├── static/
│   │   │   │   │   │   │   340.310a22805a4f2bd627f2.js
│   │   │   │   │   │   │   remoteEntry.cf61b7703ecd84191a10.js
│   │   │   │   │   │   │   style.js
│   │   │   │   ├── nbextensions/
│   │   │   │   │   ├── pydeck/
│   │   │   │   │   │   extensionRequires.js
│   │   │   │   │   │   index.js
│   │   │   │   │   │   index.js.map
│   │   │   ├── man/
│   │   │   │   ├── man1/
│   │   │   │   │   ttx.1
│   ├── __pycache__/
│   │   resonance.cpython-310.pyc
│   │   trappist_sim.cpython-310.pyc
```

## License
This project is licensed under the MIT License.
