rapidfireai 0.0.1__py3-none-any.whl → 0.9.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rapidfireai might be problematic. Click here for more details.
- rapidfireai/__init__.py +11 -5
- rapidfireai/automl/__init__.py +20 -0
- rapidfireai/automl/base.py +48 -0
- rapidfireai/automl/datatypes.py +42 -0
- rapidfireai/automl/grid_search.py +125 -0
- rapidfireai/automl/model_config.py +102 -0
- rapidfireai/automl/random_search.py +145 -0
- rapidfireai/backend/__init__.py +0 -0
- rapidfireai/backend/chunks.py +63 -0
- rapidfireai/backend/controller.py +637 -0
- rapidfireai/backend/scheduler.py +137 -0
- rapidfireai/backend/worker.py +272 -0
- rapidfireai/cli.py +380 -0
- rapidfireai/db/__init__.py +0 -0
- rapidfireai/db/db_interface.py +135 -0
- rapidfireai/db/rf_db.py +694 -0
- rapidfireai/db/tables.sql +64 -0
- rapidfireai/dispatcher/dispatcher.py +391 -0
- rapidfireai/dispatcher/gunicorn.conf.py +25 -0
- rapidfireai/experiment.py +168 -0
- rapidfireai/frontend/build/asset-manifest.json +276 -0
- rapidfireai/frontend/build/favicon.ico +0 -0
- rapidfireai/frontend/build/index.html +1 -0
- rapidfireai/frontend/build/manifest.json +15 -0
- rapidfireai/frontend/build/pdf.worker.js +1 -0
- rapidfireai/frontend/build/report.html +39 -0
- rapidfireai/frontend/build/static/css/1482.3b7bf531.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/2730.3f8937ff.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/318.0def90a7.css +7 -0
- rapidfireai/frontend/build/static/css/4762.9b7b71f7.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/4950.487ecc8b.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/5170.2574ce9d.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6121.4d541986.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6343.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6534.433c213f.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6920.ffac4b2a.css +2 -0
- rapidfireai/frontend/build/static/css/7246.bf2f0c87.css +9 -0
- rapidfireai/frontend/build/static/css/7367.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/8690.05d081e5.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9531.d0910d3c.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9780.363e4943.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/main~d91a9049.c0be472c.css +1 -0
- rapidfireai/frontend/build/static/js/1000.e5ed264b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1012.ac98ab59.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1079.6c13ac0d.js +1 -0
- rapidfireai/frontend/build/static/js/110.9059f3b8.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1142.872d0010.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1167.9a6da14c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1248.60890b4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1262.83dc7673.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/1303.7d19305c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1351.45076ff3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1355.b896a592.js +1 -0
- rapidfireai/frontend/build/static/js/1357.02c46a02.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1470.c51d60c6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1482.23b74f50.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1500.19799d8d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1648.d3b9edc7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1860.7d96e3f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1909.5b1d9ff4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js.LICENSE.txt +11 -0
- rapidfireai/frontend/build/static/js/1933.deba26ca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/21.aac92802.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2103.0ca12071.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2258.b3b8fab4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2289.9ad51e87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js +2 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/2346.ed99ca72.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2386.0a660834.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2402.465048f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/243.5a83bbca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2589.68571e16.js +1 -0
- rapidfireai/frontend/build/static/js/2647.65092bab.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2691.65d4a4e7.js +1 -0
- rapidfireai/frontend/build/static/js/2730.b38dd6f3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2746.ef752da4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2779.580d4491.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2799.fe5993b2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/2901.ee0c606b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/2956.a393c8cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2972.679bed05.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js.LICENSE.txt +51 -0
- rapidfireai/frontend/build/static/js/3093.488df653.js +1 -0
- rapidfireai/frontend/build/static/js/3145.66ee61b9.js +1 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/3307.f6fb258c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3325.d5b03d65.js +1 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/3387.bb8edad3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3448.438e6579.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3460.735eea87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js +2 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js +2 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3563.cc828e19.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js.LICENSE.txt +4 -0
- rapidfireai/frontend/build/static/js/3608.403b4b79.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3652.cb8add7f.js +1 -0
- rapidfireai/frontend/build/static/js/3775.5230b157.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js +2 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3835.d9946ff9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3964.874f0297.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3968.275cbc3d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3999.765cbd82.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4020.4452c046.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4138.2f6f6d9f.js +1 -0
- rapidfireai/frontend/build/static/js/4160.f424554c.js +1 -0
- rapidfireai/frontend/build/static/js/4180.50cea095.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4221.b0bba3f5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4250.5bb49278.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4297.15777d8f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js +2 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js +2 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/4578.a8124588.js +1 -0
- rapidfireai/frontend/build/static/js/4596.89a97480.js +1 -0
- rapidfireai/frontend/build/static/js/4748.566f435a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4762.928e8a90.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js +2 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4804.26b50dd4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4850.62390a45.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4862.a0ccb221.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/491.5dc8ed40.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/4943.6d345fd3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4950.bc182e62.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/5170.0065e96f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js +2 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js.LICENSE.txt +3 -0
- rapidfireai/frontend/build/static/js/5229.7dd42316.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5286.4c1ad26b.js +1 -0
- rapidfireai/frontend/build/static/js/5486.21cff711.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5526.7b368956.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5605.1ee4d87b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5682.40b42d8b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5794.9433d867.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/5862.50f42a0b.js +1 -0
- rapidfireai/frontend/build/static/js/5895.e26742f1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5919.edd4a5cf.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/598.a0e792ae.js +1 -0
- rapidfireai/frontend/build/static/js/6058.74162bf9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/6335.9fca442d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6336.e05e1154.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6343.2bcd28ff.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6363.a319b8f2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6478.344abf25.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6504.1c004564.js +1 -0
- rapidfireai/frontend/build/static/js/6534.ec7e149b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6715.55a5c19c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js.LICENSE.txt +19 -0
- rapidfireai/frontend/build/static/js/6846.67103d0e.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6861.34cf0198.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js.LICENSE.txt +5 -0
- rapidfireai/frontend/build/static/js/6933.8b564944.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/699.d0437920.js +1 -0
- rapidfireai/frontend/build/static/js/7076.4182f63a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7186.42ad86d5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7248.a46635fd.js +1 -0
- rapidfireai/frontend/build/static/js/725.6b15a14a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7266.3575539d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7367.7120474f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7436.8e226055.js +1 -0
- rapidfireai/frontend/build/static/js/7504.ef223844.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7603.ee049fe3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7721.7390b3cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7731.5796cced.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7832.7976a3e4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7844.72cc2e81.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7948.48eab032.js +1 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8017.a9e7dc5a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js +2 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js.LICENSE.txt +41 -0
- rapidfireai/frontend/build/static/js/8123.b69db974.js +1 -0
- rapidfireai/frontend/build/static/js/813.065a87e5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8262.04bc17d1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8300.75adcc4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8336.b1d3e764.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8365.26cf64ea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8486.8ec852a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8497.19378265.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8541.4c55c9f4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8712.a9445fe6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8763.61761e08.js +1 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8867.767462b7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8953.c0f88dea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js.LICENSE.txt +12 -0
- rapidfireai/frontend/build/static/js/9079.88a8d2a3.js +1 -0
- rapidfireai/frontend/build/static/js/9082.37c40520.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js +2 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js +2 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9168.027bf2fd.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9194.9c5cc548.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9244.026f4aee.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js +2 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9369.7d1a0a1d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9427.7c8442e7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/944.55948859.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js +2 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js.LICENSE.txt +62 -0
- rapidfireai/frontend/build/static/js/9531.3ce05781.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9620.b6e973a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9645.6fddfa65.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9669.d38dda6d.js +1 -0
- rapidfireai/frontend/build/static/js/9682.41b6b807.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js.LICENSE.txt +23 -0
- rapidfireai/frontend/build/static/js/9723.d3c7fe9e.js +1 -0
- rapidfireai/frontend/build/static/js/9780.02a27630.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9815.b8db3c5d.js +1 -0
- rapidfireai/frontend/build/static/js/9886.2940b53a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/main~1f912138.fa9d03b1.js +1 -0
- rapidfireai/frontend/build/static/js/main~43dd7041.2e00860d.js +1 -0
- rapidfireai/frontend/build/static/js/main~84781932.68deffff.js +1 -0
- rapidfireai/frontend/build/static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg +32 -0
- rapidfireai/frontend/build/static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png +0 -0
- rapidfireai/frontend/build/static/media/chart-bar.0fd4a63680fba840a7b69fbf07969f79.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-contour.0d4b306f2669f3ad25375568935e3ce3.svg +5 -0
- rapidfireai/frontend/build/static/media/chart-difference.16174216d6f3b7c24f40e3541fe0ca2c.svg +20 -0
- rapidfireai/frontend/build/static/media/chart-image.cc434c4dc50780966344e2385a15f8fe.svg +6 -0
- rapidfireai/frontend/build/static/media/chart-line.0adaa2036bb4eb5956db6d0c7e925a3d.svg +4 -0
- rapidfireai/frontend/build/static/media/chart-parallel.da7dedf539b2af4b654d377c679173e4.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-scatter.69118d0023a6ff3973f7fa913834ac47.svg +9 -0
- rapidfireai/frontend/build/static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg +26 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2 +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.8b43027f47b20503057d.eot +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg +2671 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff +0 -0
- rapidfireai/frontend/build/static/media/icon-visible-fill.8d34cd35303828fdfc15154f5536e63b.svg +7 -0
- rapidfireai/frontend/build/static/media/no-experiments.0e4f4a114ef73e7d81c09474aba64b6c.svg +22 -0
- rapidfireai/frontend/build/static/media/parallel-chart-placeholder.234ef0c5b220ef2a5a6fa5bafff173f7.svg +16 -0
- rapidfireai/frontend/build/static/media/permission-denied-lock.16036747d57cd663d7df223781a447b2.svg +14 -0
- rapidfireai/frontend/build/static/media/promo-modal-content.e3b2c6c568ac192b9bec54b838b54850.svg +30 -0
- rapidfireai/frontend/build/static/media/registered-model-grey-ok.8274b58d39504c8d1b8c358aa1c9aa35.svg +23 -0
- rapidfireai/frontend/build/static/media/warning.290a3b14118933547965e91ea61c5a61.svg +3 -0
- rapidfireai/frontend/proxy_middleware.py +233 -0
- rapidfireai/frontend/server.py +25 -0
- rapidfireai/ml/__init__.py +0 -0
- rapidfireai/ml/callbacks.py +176 -0
- rapidfireai/ml/checkpoint_utils.py +540 -0
- rapidfireai/ml/trainer.py +309 -0
- rapidfireai/start.sh +634 -0
- rapidfireai/utils/__init__.py +0 -0
- rapidfireai/utils/automl_utils.py +51 -0
- rapidfireai/utils/constants.py +141 -0
- rapidfireai/utils/datapaths.py +69 -0
- rapidfireai/utils/exceptions.py +82 -0
- rapidfireai/utils/experiment_utils.py +370 -0
- rapidfireai/utils/logging.py +87 -0
- rapidfireai/utils/mlflow_manager.py +121 -0
- rapidfireai/utils/serialize.py +15 -0
- rapidfireai/utils/shm_manager.py +469 -0
- rapidfireai/utils/trainer_config.py +23 -0
- rapidfireai/utils/worker_manager.py +219 -0
- rapidfireai/version.py +6 -0
- rapidfireai-0.9.10.dist-info/METADATA +247 -0
- rapidfireai-0.9.10.dist-info/RECORD +318 -0
- rapidfireai-0.9.10.dist-info/entry_points.txt +2 -0
- rapidfireai-0.0.1.dist-info/METADATA +0 -37
- rapidfireai-0.0.1.dist-info/RECORD +0 -6
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.10.dist-info}/WHEEL +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.10.dist-info}/licenses/LICENSE +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.10.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 936.2e02d037.js.LICENSE.txt */
|
|
2
|
+
(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[936],{10582:function(){},61447:function(){},96634:function(e,r,n){"use strict";n.d(r,{Me:function(){return c},Ob:function(){return s},YL:function(){return i},_:function(){return o},g8:function(){return u},n6:function(){return d},wE:function(){return l}});var t=n(99878);function o(e,r,n){return{r:255*(0,t.Cg)(e,255),g:255*(0,t.Cg)(r,255),b:255*(0,t.Cg)(n,255)}}function a(e,r,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*n*(r-e):n<.5?r:n<2/3?e+(r-e)*(2/3-n)*6:e}function i(e,r,n){var o,i,l;if(e=(0,t.Cg)(e,360),r=(0,t.Cg)(r,100),n=(0,t.Cg)(n,100),0===r)i=n,l=n,o=n;else{var c=n<.5?n*(1+r):n+r-n*r,s=2*n-c;o=a(s,c,e+1/3),i=a(s,c,e),l=a(s,c,e-1/3)}return{r:255*o,g:255*i,b:255*l}}function l(e,r,n){e=(0,t.Cg)(e,255),r=(0,t.Cg)(r,255),n=(0,t.Cg)(n,255);var o=Math.max(e,r,n),a=Math.min(e,r,n),i=0,l=o,c=o-a,s=0===o?0:c/o;if(o===a)i=0;else{switch(o){case e:i=(r-n)/c+(r<n?6:0);break;case r:i=(n-e)/c+2;break;case n:i=(e-r)/c+4}i/=6}return{h:i,s:s,v:l}}function c(e,r,n){e=6*(0,t.Cg)(e,360),r=(0,t.Cg)(r,100),n=(0,t.Cg)(n,100);var o=Math.floor(e),a=e-o,i=n*(1-r),l=n*(1-a*r),c=n*(1-(1-a)*r),s=o%6;return{r:255*[n,l,i,i,c,n][s],g:255*[c,n,n,l,i,i][s],b:255*[i,i,c,n,n,l][s]}}function s(e,r,n,o){var a=[(0,t.wl)(Math.round(e).toString(16)),(0,t.wl)(Math.round(r).toString(16)),(0,t.wl)(Math.round(n).toString(16))];return o&&a[0].startsWith(a[0].charAt(1))&&a[1].startsWith(a[1].charAt(1))&&a[2].startsWith(a[2].charAt(1))?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0):a.join("")}function d(e){return u(e)/255}function u(e){return parseInt(e,16)}},43721:function(e,r,n){"use strict";n.d(r,{RO:function(){return i}});var t=n(96634),o={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},a=n(99878);function i(e){var r={r:0,g:0,b:0},n=1,i=null,l=null,c=null,s=!1,g=!1;return"string"===typeof e&&(e=function(e){if(e=e.trim().toLowerCase(),0===e.length)return!1;var r=!1;if(o[e])e=o[e],r=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var n=d.rgb.exec(e);if(n)return{r:n[1],g:n[2],b:n[3]};if(n=d.rgba.exec(e),n)return{r:n[1],g:n[2],b:n[3],a:n[4]};if(n=d.hsl.exec(e),n)return{h:n[1],s:n[2],l:n[3]};if(n=d.hsla.exec(e),n)return{h:n[1],s:n[2],l:n[3],a:n[4]};if(n=d.hsv.exec(e),n)return{h:n[1],s:n[2],v:n[3]};if(n=d.hsva.exec(e),n)return{h:n[1],s:n[2],v:n[3],a:n[4]};if(n=d.hex8.exec(e),n)return{r:(0,t.g8)(n[1]),g:(0,t.g8)(n[2]),b:(0,t.g8)(n[3]),a:(0,t.n6)(n[4]),format:r?"name":"hex8"};if(n=d.hex6.exec(e),n)return{r:(0,t.g8)(n[1]),g:(0,t.g8)(n[2]),b:(0,t.g8)(n[3]),format:r?"name":"hex"};if(n=d.hex4.exec(e),n)return{r:(0,t.g8)(n[1]+n[1]),g:(0,t.g8)(n[2]+n[2]),b:(0,t.g8)(n[3]+n[3]),a:(0,t.n6)(n[4]+n[4]),format:r?"name":"hex8"};if(n=d.hex3.exec(e),n)return{r:(0,t.g8)(n[1]+n[1]),g:(0,t.g8)(n[2]+n[2]),b:(0,t.g8)(n[3]+n[3]),format:r?"name":"hex"};return!1}(e)),"object"===typeof e&&(u(e.r)&&u(e.g)&&u(e.b)?(r=(0,t._)(e.r,e.g,e.b),s=!0,g="%"===String(e.r).substr(-1)?"prgb":"rgb"):u(e.h)&&u(e.s)&&u(e.v)?(i=(0,a.Px)(e.s),l=(0,a.Px)(e.v),r=(0,t.Me)(e.h,i,l),s=!0,g="hsv"):u(e.h)&&u(e.s)&&u(e.l)&&(i=(0,a.Px)(e.s),c=(0,a.Px)(e.l),r=(0,t.YL)(e.h,i,c),s=!0,g="hsl"),Object.prototype.hasOwnProperty.call(e,"a")&&(n=e.a)),n=(0,a.TV)(n),{ok:s,format:e.format||g,r:Math.min(255,Math.max(r.r,0)),g:Math.min(255,Math.max(r.g,0)),b:Math.min(255,Math.max(r.b,0)),a:n}}var l="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)",c="[\\s|\\(]+("+l+")[,|\\s]+("+l+")[,|\\s]+("+l+")\\s*\\)?",s="[\\s|\\(]+("+l+")[,|\\s]+("+l+")[,|\\s]+("+l+")[,|\\s]+("+l+")\\s*\\)?",d={CSS_UNIT:new RegExp(l),rgb:new RegExp("rgb"+c),rgba:new RegExp("rgba"+s),hsl:new RegExp("hsl"+c),hsla:new RegExp("hsla"+s),hsv:new RegExp("hsv"+c),hsva:new RegExp("hsva"+s),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function u(e){return Boolean(d.CSS_UNIT.exec(String(e)))}},99878:function(e,r,n){"use strict";function t(e,r){(function(e){return"string"===typeof e&&-1!==e.indexOf(".")&&1===parseFloat(e)})(e)&&(e="100%");var n=function(e){return"string"===typeof e&&-1!==e.indexOf("%")}(e);return e=360===r?e:Math.min(r,Math.max(0,parseFloat(e))),n&&(e=parseInt(String(e*r),10)/100),Math.abs(e-r)<1e-6?1:e=360===r?(e<0?e%r+r:e%r)/parseFloat(String(r)):e%r/parseFloat(String(r))}function o(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function a(e){return e<=1?100*Number(e)+"%":e}function i(e){return 1===e.length?"0"+e:String(e)}n.d(r,{Cg:function(){return t},Px:function(){return a},TV:function(){return o},wl:function(){return i}})},68254:function(e,r,n){"use strict";n.d(r,{$:function(){return Ir},A:function(){return Ue},B:function(){return Tn},C:function(){return gr},D:function(){return _e},F:function(){return Ge},I:function(){return er},L:function(){return yn},M:function(){return Ee},N:function(){return Oe},O:function(){return Ze},R:function(){return Xe},S:function(){return Dn},T:function(){return Kr},U:function(){return Ye},W:function(){return Mr},a:function(){return q},b:function(){return sr},c:function(){return Ke},d:function(){return qe},e:function(){return tr},f:function(){return Sn},g:function(){return Le},h:function(){return X},i:function(){return _},j:function(){return ce},k:function(){return yr},l:function(){return Cr},m:function(){return Jr},n:function(){return he},o:function(){return ir},p:function(){return gn},q:function(){return ln},r:function(){return cn},s:function(){return xn},t:function(){return ge},u:function(){return Me},v:function(){return N},w:function(){return ze},x:function(){return De}});var t=n(31014),o=n(50111),a=n(22508),i=n(89555),l=n(67304),c=n(8602),s=n(45766),d=n(63138),u=n(42110),g=n(89379),f=n(64467),h=n(80045),p=n(45959),m=n.n(p),y=n(31850),b=n(90053),v=["className","component","viewBox","spin","rotate","tabIndex","onClick","children"],D=t.forwardRef((function(e,r){var n=e.className,o=e.component,a=e.viewBox,i=e.spin,l=e.rotate,c=e.tabIndex,s=e.onClick,d=e.children,u=(0,h.A)(e,v);(0,b.$e)(Boolean(o||d),"Should have `component` prop or `children`."),(0,b.lf)();var p=t.useContext(y.A).prefixCls,D=void 0===p?"anticon":p,x=m()(D,n),k=m()((0,f.A)({},"".concat(D,"-spin"),!!i)),w=l?{msTransform:"rotate(".concat(l,"deg)"),transform:"rotate(".concat(l,"deg)")}:void 0,T=(0,g.A)((0,g.A)({},b.yf),{},{className:k,style:w,viewBox:a});a||delete T.viewBox;var B=c;return void 0===B&&s&&(B=-1),t.createElement("span",(0,g.A)((0,g.A)({role:"img"},u),{},{ref:r,tabIndex:B,onClick:s,className:x}),o?t.createElement(o,(0,g.A)({},T),d):d?((0,b.$e)(Boolean(a)||1===t.Children.count(d)&&t.isValidElement(d)&&"use"===t.Children.only(d).type,"Make sure that you provide correct `viewBox` prop (default `0 0 1024 1024`) to the icon."),t.createElement("svg",(0,g.A)((0,g.A)({},T),{},{viewBox:a}),d)):null)}));D.displayName="AntdIcon";var x=D,k=n(72525),w=n.n(k),T=n(26402),B=n.n(T),C=n(32842),A=n.n(C),P=n(65877),H=n.n(P),S=n(24633),I=n.n(S),$=n(74854),F=n.n($),M=n(97226),Y=n.n(M),R=n(61155);const N={"&:not(:focus):not(:active)":{clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",overflow:"hidden",position:"absolute",whiteSpace:"nowrap",width:"1px"}},E={xs:4,sm:8,md:16,lg:24};var z=E;const L={classnamePrefix:"du-bois",iconfontCssPrefix:"anticon",borderRadiusBase:4,borderWidth:1,heightSm:32,heightBase:40,iconSize:24,iconFontSize:16,buttonHeight:40,buttonInnerHeight:40-2*z.sm-2},V="31, 39, 45",W="0, 0, 0",O=e=>e?{shadowLow:`0px 4px 16px rgba(${W}, 0.12)`,shadowHigh:`0px 8px 24px rgba(${W}, 0.2);`}:{shadowLow:`0px 4px 16px rgba(${V}, 0.12)`,shadowHigh:`0px 8px 24px rgba(${V}, 0.2)`};let Z=function(e){return e.ActionDangerDefaultBackgroundDefault="actionDangerDefaultBackgroundDefault",e.ActionDangerDefaultBackgroundHover="actionDangerDefaultBackgroundHover",e.ActionDangerDefaultBackgroundPress="actionDangerDefaultBackgroundPress",e.ActionDangerDefaultBorderDefault="actionDangerDefaultBorderDefault",e.ActionDangerDefaultBorderHover="actionDangerDefaultBorderHover",e.ActionDangerDefaultBorderPress="actionDangerDefaultBorderPress",e.ActionDangerDefaultTextDefault="actionDangerDefaultTextDefault",e.ActionDangerDefaultTextHover="actionDangerDefaultTextHover",e.ActionDangerDefaultTextPress="actionDangerDefaultTextPress",e.ActionDangerPrimaryBackgroundDefault="actionDangerPrimaryBackgroundDefault",e.ActionDangerPrimaryBackgroundHover="actionDangerPrimaryBackgroundHover",e.ActionDangerPrimaryBackgroundPress="actionDangerPrimaryBackgroundPress",e.ActionDangerPrimaryText="actionDangerPrimaryText",e.ActionDefaultBackgroundDefault="actionDefaultBackgroundDefault",e.ActionDefaultBackgroundHover="actionDefaultBackgroundHover",e.ActionDefaultBackgroundPress="actionDefaultBackgroundPress",e.ActionDefaultBorderDefault="actionDefaultBorderDefault",e.ActionDefaultBorderFocus="actionDefaultBorderFocus",e.ActionDefaultBorderHover="actionDefaultBorderHover",e.ActionDefaultBorderPress="actionDefaultBorderPress",e.ActionDefaultIconDefault="actionDefaultIconDefault",e.ActionDefaultIconHover="actionDefaultIconHover",e.ActionDefaultIconPress="actionDefaultIconPress",e.ActionDefaultTextDefault="actionDefaultTextDefault",e.ActionDefaultTextHover="actionDefaultTextHover",e.ActionDefaultTextPress="actionDefaultTextPress",e.ActionDisabledBackground="actionDisabledBackground",e.ActionDisabledBorder="actionDisabledBorder",e.ActionDisabledText="actionDisabledText",e.ActionIconBackgroundDefault="actionIconBackgroundDefault",e.ActionIconBackgroundHover="actionIconBackgroundHover",e.ActionIconBackgroundPress="actionIconBackgroundPress",e.ActionIconIconDefault="actionIconIconDefault",e.ActionIconIconHover="actionIconIconHover",e.ActionIconIconPress="actionIconIconPress",e.ActionLinkDefault="actionLinkDefault",e.ActionLinkHover="actionLinkHover",e.ActionLinkPress="actionLinkPress",e.ActionPrimaryBackgroundDefault="actionPrimaryBackgroundDefault",e.ActionPrimaryBackgroundHover="actionPrimaryBackgroundHover",e.ActionPrimaryBackgroundPress="actionPrimaryBackgroundPress",e.ActionPrimaryIcon="actionPrimaryIcon",e.ActionPrimaryTextDefault="actionPrimaryTextDefault",e.ActionPrimaryTextHover="actionPrimaryTextHover",e.ActionPrimaryTextPress="actionPrimaryTextPress",e.ActionTertiaryBackgroundDefault="actionTertiaryBackgroundDefault",e.ActionTertiaryBackgroundHover="actionTertiaryBackgroundHover",e.ActionTertiaryBackgroundPress="actionTertiaryBackgroundPress",e.ActionTertiaryIconDefault="actionTertiaryIconDefault",e.ActionTertiaryIconHover="actionTertiaryIconHover",e.ActionTertiaryIconPress="actionTertiaryIconPress",e.ActionTertiaryTextDefault="actionTertiaryTextDefault",e.ActionTertiaryTextHover="actionTertiaryTextHover",e.ActionTertiaryTextPress="actionTertiaryTextPress",e.BackgroundDanger="backgroundDanger",e.BackgroundPrimary="backgroundPrimary",e.BackgroundSecondary="backgroundSecondary",e.BackgroundSuccess="backgroundSuccess",e.BackgroundWarning="backgroundWarning",e.Border="border",e.BorderAccessible="borderAccessible",e.BorderDanger="borderDanger",e.BorderWarning="borderWarning",e.CodeBackground="codeBackground",e.OverlayOverlay="overlayOverlay",e.ProgressFill="progressFill",e.ProgressTrack="progressTrack",e.Skeleton="skeleton",e.TableBackgroundSelectedDefault="tableBackgroundSelectedDefault",e.TableBackgroundSelectedHover="tableBackgroundSelectedHover",e.TableBackgroundUnselectedDefault="tableBackgroundUnselectedDefault",e.TableBackgroundUnselectedHover="tableBackgroundUnselectedHover",e.TagBrown="tagBrown",e.TagCharcoal="tagCharcoal",e.TagCoral="tagCoral",e.TagDefault="tagDefault",e.TagHover="tagHover",e.TagIconDefault="tagIconDefault",e.TagIconHover="tagIconHover",e.TagIconPress="tagIconPress",e.TagIndigo="tagIndigo",e.TagInverse="tagInverse",e.TagLemon="tagLemon",e.TagLime="tagLime",e.TagPink="tagPink",e.TagPress="tagPress",e.TagPurple="tagPurple",e.TagTeal="tagTeal",e.TagText="tagText",e.TagTurquoise="tagTurquoise",e.TextPlaceholder="textPlaceholder",e.TextPrimary="textPrimary",e.TextSecondary="textSecondary",e.TextValidationDanger="textValidationDanger",e.TextValidationSuccess="textValidationSuccess",e.TextValidationWarning="textValidationWarning",e.TooltipBackgroundTooltip="tooltipBackgroundTooltip",e}({});const U={primary:Z.TextPrimary,secondary:Z.TextSecondary,info:Z.TextSecondary,error:Z.TextValidationDanger,success:Z.TextValidationSuccess,warning:Z.TextValidationWarning};function _(e){return F()(e,((e,r)=>I()(e)||H()(e)||A()(e)?I()(e)&&B()(e,"!important")?e:H()(e)?R.A[r]?`${e}!important`:`${e}px!important`:`${e}!important`:w()(e)?e:_(e)))}function j(e,r,n){return e&&r&&Object(e.colors).hasOwnProperty(U[r])?e.colors[U[r]]:null!==n&&void 0!==n?n:e.colors.textPrimary}function X(e,r){let{errorColor:n,warningColor:t,successColor:o}=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};switch(r){case"error":return n||e.colors.actionDangerPrimaryBackgroundDefault;case"warning":return t||e.colors.textValidationWarning;case"success":return o||e.colors.textValidationSuccess;default:return}}function q(e){return e&&e.isDarkMode?{border:`1px solid ${e.colors.borderDecorative}`,boxShadow:"none"}:{}}const G=e=>`linear-gradient(${e} 30%, rgba(0, 0, 0, 0)) center top`,J=e=>`linear-gradient(rgba(0, 0, 0, 0), ${e} 70%) center bottom`,K=e=>`linear-gradient(to left, rgba(0, 0, 0, 0), ${e} 30%) left center`,Q=e=>`linear-gradient(to left, ${e} 70%, rgba(0, 0, 0, 0)) right center`,ee=e=>`radial-gradient(\n farthest-side at 50% 0,\n rgba(${e}, 0.2),\n rgba(${e}, 0)\n) center top`,re=e=>`radial-gradient(\n farthest-side at 50% 100%,\n rgba(${e}, 0.2),\n rgba(${e}, 0)\n) center bottom`,ne=e=>`radial-gradient(\n farthest-side at 100% 50%,\n rgba(${e}, 0.2),\n rgba(${e}, 0)\n) right center`,te="100% 40px",oe="40px 100%",ae="100% 14px",ie="14px 100%",le=Y()((function(e,r){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"vertical";const t=null!==r&&void 0!==r?r:e.colors.backgroundPrimary,o=e.isDarkMode?W:V;return"horizontal"===n?{background:`\n ${K(t)},\n ${Q(t)},\n ${a=o,`radial-gradient(\n farthest-side at 0 50%,\n rgba(${a}, 0.2),\n rgba(${a}, 0)\n) left center`},\n ${ne(o)}`,backgroundRepeat:"no-repeat",backgroundSize:`\n ${oe},\n ${oe},\n ${ie},\n ${ie}`,backgroundAttachment:"local, local, scroll, scroll"}:{background:`\n ${G(t)},\n ${J(t)},\n ${ee(o)},\n ${re(o)}`,backgroundRepeat:"no-repeat",backgroundSize:`\n ${te},\n ${te},\n ${ae},\n ${ae}`,backgroundAttachment:"local, local, scroll, scroll"};var a}),((e,r,n)=>`${e.isDarkMode}-${r}-${n}`)),ce=function(e){let{backgroundColor:r,orientation:n}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return le(e,r,n)};Y()((function(e,r){const n=null!==r&&void 0!==r?r:e.colors.backgroundPrimary;return{background:`\n ${J(n)},\n ${re(e.isDarkMode?W:V)}`,backgroundRepeat:"no-repeat",backgroundSize:`\n ${te},\n ${ae}`,backgroundAttachment:"local, scroll"}}));let se=null;const de=new WeakMap;function ue(e,r){var n;return se||(se=new IntersectionObserver((e=>{e.forEach((e=>{if(e.isIntersecting){const r=de.get(e.target);r&&(r(),de.delete(e.target))}}))}))),de.set(e,r),null===(n=se)||void 0===n||n.observe(e),()=>{var r;e&&(null===(r=se)||void 0===r||r.unobserve(e),de.delete(e))}}const ge=e=>{let{onView:r}=e;const n=(0,t.useRef)(!1),o=(0,t.useRef)(null);return(0,t.useEffect)((()=>{const e=o.current;if(!e||n.current)return;const t=()=>{n.current=!0,r()};if(window.IntersectionObserver)return ue(e,t);t()}),[r]),{elementRef:o}};var fe={name:"g8zzui",styles:"cursor:progress"};function he(e){let{children:r,label:n}=e;return n?(0,o.FD)("div",{css:fe,children:[(0,o.Y)("span",{css:N,children:n}),(0,o.Y)("div",{"aria-hidden":!0,children:r})]}):(0,o.Y)(o.FK,{children:r})}var pe={borderRadiusMd:4};const me={xs:0,sm:576,md:768,lg:992,xl:1200,xxl:1600};var ye={breakpoints:me,mediaQueries:{xs:"@media (max-width: 575.98px)",sm:`@media (min-width: ${me.sm}px)`,md:`@media (min-width: ${me.md}px)`,lg:`@media (min-width: ${me.lg}px)`,xl:`@media (min-width: ${me.xl}px)`,xxl:`@media (min-width: ${me.xxl}px)`}};const be={blue100:"#F0F8FF",blue200:"#D7EDFE",blue300:"#BAE1FC",blue400:"#8ACAFF",blue500:"#4299E0",blue600:"#2272B4",blue700:"#0E538B",blue800:"#04355D",brown:"#A6630C",coral:"#C83243",green100:"#F3FCF6",green200:"#D4F7DF",green300:"#B1ECC5",green400:"#8DDDA8",green500:"#3CAA60",green600:"#277C43",green700:"#115026",green800:"#093919",grey050:"#F6F7F9",grey100:"#E8ECF0",grey200:"#D1D9E1",grey300:"#C0CDD8",grey350:"#92A4B3",grey400:"#8396A5",grey500:"#5F7281",grey600:"#445461",grey650:"#37444F",grey700:"#1F272D",grey800:"#11171C",indigo:"#434A93",lemon:"#FACB66",lime:"#308613",pink:"#B45091",purple:"#8A63BF",red100:"#FFF5F7",red200:"#FDE2E8",red300:"#FBD0D8",red400:"#F792A6",red500:"#E65B77",red600:"#C82D4C",red700:"#9E102C",red800:"#630316",teal:"#04867D",turquoise:"#137DAE",white:"#FFFFFF",yellow100:"#FFF9EB",yellow200:"#FCEACA",yellow300:"#F8D4A5",yellow400:"#F2BE88",yellow500:"#DE7921",yellow600:"#BE501E",yellow700:"#93320B",yellow800:"#5F1B02"},ve={actionDangerDefaultBackgroundDefault:"rgba(247, 146, 166, 0.0000)",actionDangerDefaultBackgroundHover:"rgba(247, 146, 166, 0.0800)",actionDangerDefaultBackgroundPress:"rgba(247, 146, 166, 0.1600)",actionDangerDefaultBorderDefault:be.red500,actionDangerDefaultBorderHover:be.red400,actionDangerDefaultBorderPress:be.red300,actionDangerDefaultTextDefault:be.red500,actionDangerDefaultTextHover:be.red400,actionDangerDefaultTextPress:be.red300,actionDangerPrimaryBackgroundDefault:be.red500,actionDangerPrimaryBackgroundHover:be.red400,actionDangerPrimaryBackgroundPress:be.red300,actionDangerPrimaryText:be.grey800,actionDefaultBackgroundDefault:"rgba(138, 202, 255, 0.0000)",actionDefaultBackgroundHover:"rgba(138, 202, 255, 0.0800)",actionDefaultBackgroundPress:"rgba(138, 202, 255, 0.1600)",actionDefaultBorderDefault:be.grey650,actionDefaultBorderFocus:be.blue400,actionDefaultBorderHover:be.blue400,actionDefaultBorderPress:be.blue300,actionDefaultIconDefault:be.grey350,actionDefaultIconHover:be.blue400,actionDefaultIconPress:be.blue300,actionDefaultTextDefault:be.grey100,actionDefaultTextHover:be.blue400,actionDefaultTextPress:be.blue300,actionDisabledBackground:be.grey650,actionDisabledBorder:be.grey600,actionDisabledText:be.grey500,actionIconBackgroundDefault:"rgba(255, 255, 255, 0.0000)",actionIconBackgroundHover:"rgba(255, 255, 255, 0.0800)",actionIconBackgroundPress:"rgba(255, 255, 255, 0.1600)",actionIconIconDefault:be.grey350,actionIconIconHover:be.grey300,actionIconIconPress:be.grey200,actionLinkDefault:be.blue500,actionLinkHover:be.blue400,actionLinkPress:be.blue300,actionPrimaryBackgroundDefault:be.blue500,actionPrimaryBackgroundHover:be.blue400,actionPrimaryBackgroundPress:be.blue300,actionPrimaryIcon:be.grey800,actionPrimaryTextDefault:be.grey800,actionPrimaryTextHover:be.grey800,actionPrimaryTextPress:be.grey800,actionTertiaryBackgroundDefault:"rgba(143, 205, 255, 0.0000)",actionTertiaryBackgroundHover:"rgba(143, 205, 255, 0.0800)",actionTertiaryBackgroundPress:"rgba(143, 205, 255, 0.1600)",actionTertiaryIconDefault:be.blue500,actionTertiaryIconHover:be.blue400,actionTertiaryIconPress:be.blue300,actionTertiaryTextDefault:be.blue500,actionTertiaryTextHover:be.blue400,actionTertiaryTextPress:be.blue300,backgroundDanger:"rgba(200, 45, 76, 0.1600)",backgroundPrimary:be.grey800,backgroundSecondary:be.grey700,backgroundSuccess:"rgba(39, 124, 67, 0.1600)",backgroundWarning:"rgba(190, 80, 30, 0.1600)",border:be.grey650,borderAccessible:be.grey300,borderDanger:be.red500,borderWarning:be.yellow500,codeBackground:be.grey650,overlayOverlay:"rgba(31, 38, 45, 0.7200)",progressFill:be.grey600,progressTrack:be.grey700,skeleton:"rgba(144, 164, 181, 0.1600)",tableBackgroundSelectedDefault:"rgba(189, 205, 219, 0.0800)",tableBackgroundSelectedHover:"rgba(189, 205, 219, 0.1200)",tableBackgroundUnselectedDefault:be.grey800,tableBackgroundUnselectedHover:"rgba(189, 205, 219, 0.0400)",tagBrown:"rgba(166, 99, 12, 0.8600)",tagCharcoal:"rgba(68, 83, 95, 0.8600)",tagCoral:"rgba(200, 50, 67, 0.8600)",tagDefault:be.grey650,tagHover:"rgba(138, 202, 255, 0.0800)",tagIconDefault:be.grey350,tagIconHover:be.grey350,tagIconPress:be.grey350,tagIndigo:"rgba(67, 74, 147, 0.8600)",tagInverse:be.grey800,tagLemon:"rgba(250, 203, 102, 0.8600)",tagLime:"rgba(48, 134, 19, 0.8600)",tagPink:"rgba(180, 80, 145, 0.8600)",tagPress:"rgba(138, 202, 255, 0.1600)",tagPurple:"rgba(138, 99, 191, 0.8600)",tagTeal:"rgba(4, 134, 125, 0.8600)",tagText:be.grey100,tagTurquoise:"rgba(19, 125, 174, 0.8600)",textPlaceholder:be.grey400,textPrimary:be.grey100,textSecondary:be.grey350,textValidationDanger:be.red500,textValidationSuccess:be.green500,textValidationWarning:be.yellow500,tooltipBackgroundTooltip:be.grey300},De={actionDangerDefaultBackgroundDefault:"rgba(200, 45, 76, 0.0000)",actionDangerDefaultBackgroundHover:"rgba(200, 45, 76, 0.0800)",actionDangerDefaultBackgroundPress:"rgba(200, 45, 76, 0.1600)",actionDangerDefaultBorderDefault:be.red600,actionDangerDefaultBorderHover:be.red700,actionDangerDefaultBorderPress:be.red800,actionDangerDefaultTextDefault:be.red600,actionDangerDefaultTextHover:be.red700,actionDangerDefaultTextPress:be.red800,actionDangerPrimaryBackgroundDefault:be.red600,actionDangerPrimaryBackgroundHover:be.red700,actionDangerPrimaryBackgroundPress:be.red800,actionDangerPrimaryText:be.white,actionDefaultBackgroundDefault:"rgba(34, 114, 180, 0.0000)",actionDefaultBackgroundHover:"rgba(34, 114, 180, 0.0800)",actionDefaultBackgroundPress:"rgba(34, 114, 180, 0.1600)",actionDefaultBorderDefault:be.grey300,actionDefaultBorderFocus:be.blue700,actionDefaultBorderHover:be.blue600,actionDefaultBorderPress:be.blue800,actionDefaultIconDefault:be.grey600,actionDefaultIconHover:be.blue700,actionDefaultIconPress:be.blue800,actionDefaultTextDefault:be.grey800,actionDefaultTextHover:be.blue700,actionDefaultTextPress:be.blue800,actionDisabledBackground:be.grey100,actionDisabledBorder:be.grey200,actionDisabledText:be.grey350,actionIconBackgroundDefault:"rgba(34, 114, 180, 0.0000)",actionIconBackgroundHover:"rgba(34, 114, 180, 0.0800)",actionIconBackgroundPress:"rgba(34, 114, 180, 0.1600)",actionIconIconDefault:be.grey600,actionIconIconHover:be.blue700,actionIconIconPress:be.blue800,actionLinkDefault:be.blue600,actionLinkHover:be.blue700,actionLinkPress:be.blue800,actionPrimaryBackgroundDefault:be.blue600,actionPrimaryBackgroundHover:be.blue700,actionPrimaryBackgroundPress:be.blue800,actionPrimaryIcon:be.white,actionPrimaryTextDefault:be.white,actionPrimaryTextHover:be.white,actionPrimaryTextPress:be.white,actionTertiaryBackgroundDefault:"rgba(34, 114, 180, 0.0000)",actionTertiaryBackgroundHover:"rgba(34, 114, 180, 0.0800)",actionTertiaryBackgroundPress:"rgba(34, 114, 180, 0.1600)",actionTertiaryIconDefault:be.blue600,actionTertiaryIconHover:be.blue700,actionTertiaryIconPress:be.blue800,actionTertiaryTextDefault:be.blue600,actionTertiaryTextHover:be.blue700,actionTertiaryTextPress:be.blue800,backgroundDanger:be.red100,backgroundPrimary:be.white,backgroundSecondary:be.grey050,backgroundSuccess:be.green100,backgroundWarning:be.yellow100,border:be.grey200,borderAccessible:be.grey500,borderDanger:be.red300,borderWarning:be.yellow300,codeBackground:"rgba(68, 83, 95, 0.0800)",overlayOverlay:"rgba(64, 63, 63, 0.7200)",progressFill:be.grey300,progressTrack:be.grey100,skeleton:"rgba(144, 164, 181, 0.1600)",tableBackgroundSelectedDefault:"rgba(68, 83, 95, 0.0800)",tableBackgroundSelectedHover:"rgba(68, 83, 95, 0.1200)",tableBackgroundUnselectedDefault:be.white,tableBackgroundUnselectedHover:"rgba(68, 83, 95, 0.0400)",tagBrown:be.brown,tagCharcoal:be.grey600,tagCoral:be.coral,tagDefault:be.grey100,tagHover:"rgba(34, 114, 180, 0.0800)",tagIconDefault:be.grey600,tagIconHover:be.grey600,tagIconPress:be.grey600,tagIndigo:be.indigo,tagInverse:be.grey800,tagLemon:be.lemon,tagLime:be.lime,tagPink:be.pink,tagPress:"rgba(34, 114, 180, 0.1600)",tagPurple:be.purple,tagTeal:be.teal,tagText:be.white,tagTurquoise:be.turquoise,textPlaceholder:be.grey400,textPrimary:be.grey800,textSecondary:be.grey500,textValidationDanger:be.red600,textValidationSuccess:be.green600,textValidationWarning:be.yellow600,tooltipBackgroundTooltip:be.grey800},xe={aiGradientStart:"#677FFD",aiGradientEnd:"#79BFF1"},ke={...ve,...be,branded:xe},we={...De,...be,branded:xe};function Te(e){return e?ke:we}const Be={primary:be.blue600,charcoal:be.grey600,radioInteractiveAvailable:be.blue600,radioInteractiveHover:"#186099",radioInteractivePress:"#0D4F85",radioDisabled:"#A2AEB8",radioDefaultBorder:"#64727D",radioDefaultBackground:"#FFFFFF",radioInteractiveHoverSecondary:"rgba(34, 115, 181, 0.08)",radioInteractivePressSecondary:"rgba(34, 115, 181, 0.16)"},Ce={backgroundValidationDanger:De.backgroundDanger,backgroundValidationSuccess:De.backgroundSuccess,backgroundValidationWarning:De.backgroundWarning,borderDecorative:De.border,borderValidationDanger:De.borderDanger,borderValidationWarning:De.borderWarning,tableRowHover:De.tableBackgroundUnselectedHover,textValidationInfo:De.textSecondary,typographyCodeBg:De.codeBackground},Ae={backgroundValidationDanger:ve.backgroundDanger,backgroundValidationSuccess:ve.backgroundSuccess,backgroundValidationWarning:ve.backgroundWarning,borderDecorative:ve.border,borderValidationDanger:ve.borderDanger,borderValidationWarning:ve.borderWarning,tableRowHover:ve.tableBackgroundUnselectedHover,textValidationInfo:ve.textSecondary,typographyCodeBg:ve.codeBackground};function Pe(e){return{...Be,...e?Ae:Ce,...Te(e)}}var He={...{fontSizeSm:12,fontSizeBase:13,fontSizeMd:13,fontSizeLg:18,fontSizeXl:22,fontSizeXxl:32,lineHeightSm:"16px",lineHeightBase:"20px",lineHeightMd:"20px",lineHeightLg:"24px",lineHeightXl:"28px",lineHeightXxl:"40px",typographyRegularFontWeight:400,typographyBoldFontWeight:600}};const Se={enableAnimation:!1,zIndexBase:1e3};function Ie(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Se;return{colors:Pe(e),spacing:z,general:{...L,...O(e)},typography:He,borders:pe,responsive:ye,isDarkMode:e,options:r}}function $e(e){const r=e.isDarkMode?"dark":"light";return`${e.general.classnamePrefix}-${r}`}function Fe(e,r){return[$e(e),r].filter(Boolean).join("-")}function Me(){const e=(0,a.u)(),r=e&&e.general?e:Ie(!1);return{theme:r,classNamePrefix:$e(r),getPrefixedClassName:e=>Fe(r,e)}}function Ye(e){return function(r){const n=Me();return(0,o.Y)(e,{...r,designSystemThemeApi:n})}}const Re={enableAnimation:!1,getPrefixCls:e=>e?`du-bois-${e}`:"du-bois",flags:{}},Ne=(0,t.createContext)({isDarkMode:!1}),Ee=(0,t.createContext)(Re),ze="du-bois-enable-animation";function Le(e){const r={animationDuration:"0s !important",transition:"none !important"};return e?{}:{...r,"&::before":r,"&::after":r,[`[class*=du-bois]:not(.${ze}, .${ze} *)`]:{...r,"&::before":r,"&::after":r}}}const Ve=t.createContext(null),We=t.createContext(null),Oe=e=>{let{isDarkMode:r=!1,children:n}=e;return(0,o.Y)(Ne.Provider,{value:{isDarkMode:r},children:n})},Ze=e=>{let{children:r,enableAnimation:n=!1,zIndexBase:i=1e3,getPopupContainer:c,flags:s={},disableLegacyAntVirtualization:d}=e;const{isDarkMode:u}=(0,t.useContext)(Ne),g=(0,t.useMemo)((()=>Ie(u,{enableAnimation:n,zIndexBase:i})),[u,i]),f=(0,t.useMemo)((()=>({isDarkMode:u,enableAnimation:n,zIndexBase:i,getPopupContainer:c,flags:s})),[u,n,i,c,s]),h=$e(g),p=(0,t.useMemo)((()=>({enableAnimation:n,isDarkMode:u,getPrefixCls:e=>Fe(g,e),getPopupContainer:c,flags:s})),[n,g,u,c,s]);return(0,t.useEffect)((()=>()=>{l.A.destroy()}),[]),(0,o.Y)(Ve.Provider,{value:f,children:(0,o.Y)(a.a,{theme:g,children:(0,o.Y)(We.Provider,{value:{prefixCls:h,getPopupContainer:c,virtual:!d},children:(0,o.Y)(Ee.Provider,{value:p,children:r})})})})},Ue=e=>{let{enableAnimation:r,zIndexBase:n,getPopupContainer:a,flags:i,children:l}=e;const c=(0,t.useContext)(Ve);if(null===c)throw new Error("ApplyDesignSystemContextOverrides cannot be used standalone - DesignSystemProvider must exist in the React context");const s=(0,t.useMemo)((()=>({...c,enableAnimation:null!==r&&void 0!==r?r:c.enableAnimation,zIndexBase:null!==n&&void 0!==n?n:c.zIndexBase,getPopupContainer:null!==a&&void 0!==a?a:c.getPopupContainer,flags:{...c.flags,...i}})),[c,r,n,a,i]);return(0,o.Y)(Ze,{...s,children:l})},_e=e=>{let{children:r}=e;const n=je();return(0,o.Y)(c.Ay,{...n,children:r})},je=()=>{var e;return null!==(e=(0,t.useContext)(We))&&void 0!==e?e:{prefixCls:void 0}},Xe=e=>{let{children:r}=e;return(0,o.Y)(c.Ay,{prefixCls:"ant",children:r})};function qe(){return(0,t.useContext)(Ee)}function Ge(){return qe().flags}const Je=()=>(new Date).getTime()+Array(16).fill("").map((()=>parseInt((10*Math.random()).toString()))).join("");function Ke(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return(0,t.useState)((()=>`${e}-${Je()}`))[0]}const Qe=(e,r,n)=>{switch(n){case"success":return{color:e.colors.textValidationSuccess};case"warning":return{color:e.colors.textValidationWarning};case"danger":return{color:e.colors.textValidationDanger};case"ai":return{"svg *":{fill:`url(#${r})`}};default:return{color:n}}},er=(0,t.forwardRef)(((e,r)=>{const{component:n,dangerouslySetAntdProps:a,color:l,style:c,...s}=e,{theme:d}=Me(),u=Ke("ai-linear-gradient"),g=(0,t.useMemo)((()=>n?e=>{let{fill:r,...t}=e;return(0,o.FD)(o.FK,{children:[(0,o.Y)(n,{fill:"none",...t}),"ai"===l&&(0,o.Y)("svg",{width:"0",height:"0",viewBox:"0 0 0 0",css:N,children:(0,o.Y)("defs",{children:(0,o.FD)("linearGradient",{id:u,x2:"100%",y2:"100%",children:[(0,o.Y)("stop",{offset:"0%",stopColor:d.colors.branded.aiGradientStart}),(0,o.Y)("stop",{offset:"100%",stopColor:d.colors.branded.aiGradientEnd})]})})})]})}:void 0),[n,l,u,d]);return(0,o.Y)(_e,{children:(0,o.Y)(x,{ref:r,"aria-hidden":"true",css:(0,i.AH)({fontSize:d.general.iconFontSize,...Qe(d,u,l)},"",""),component:g,style:{...c},...s,...a})})}));function rr(e){return(0,o.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m15.06 3.56-9.53 9.531L1 8.561 2.06 7.5l3.47 3.47L14 2.5l1.06 1.06Z",clipRule:"evenodd"})})}const nr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:rr})));nr.displayName="CheckIcon";var tr=nr;function or(e){return(0,o.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M7.083 8 10 10.947 8.958 12 5 8l3.958-4L10 5.053 7.083 8Z",clipRule:"evenodd"})})}const ar=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:or})));ar.displayName="ChevronLeftIcon";var ir=ar;function lr(e){return(0,o.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8.917 8 6 5.053 7.042 4 11 8l-3.958 4L6 10.947 8.917 8Z",clipRule:"evenodd"})})}const cr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:lr})));cr.displayName="ChevronRightIcon";var sr=cr;function dr(e){return(0,o.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.97 8.03 2 3.06 3.06 2l4.97 4.97L13 2l1.06 1.06-4.969 4.97 4.97 4.97L13 14.06 8.03 9.092l-4.97 4.97L2 13l4.97-4.97Z",clipRule:"evenodd"})})}const ur=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:dr})));ur.displayName="CloseIcon";var gr=ur;function fr(e){return(0,o.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,o.Y)("g",{clipPath:"url(#CursorIcon_svg__a)",children:(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M1.22 1.22a.75.75 0 0 1 .802-.169l13.5 5.25a.75.75 0 0 1-.043 1.413L9.597 9.597l-1.883 5.882a.75.75 0 0 1-1.413.043l-5.25-13.5a.75.75 0 0 1 .169-.802Zm1.847 1.847 3.864 9.937 1.355-4.233a.75.75 0 0 1 .485-.485l4.233-1.355-9.937-3.864Z",clipRule:"evenodd"})}),(0,o.Y)("defs",{children:(0,o.Y)("clipPath",{children:(0,o.Y)("path",{fill:"#fff",d:"M16 0H0v16h16z"})})})]})}const hr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:fr})));hr.displayName="CursorIcon";function pr(e){return(0,o.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,o.Y)("path",{fill:"currentColor",d:"M7.248 10.748a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM8.748 4.998v4h-1.5v-4h1.5Z"}),(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"m11.533 15.776 4.243-4.243a.75.75 0 0 0 .22-.53v-6.01a.75.75 0 0 0-.22-.53L11.533.22a.75.75 0 0 0-.53-.22h-6.01a.75.75 0 0 0-.53.22L.22 4.462a.75.75 0 0 0-.22.53v6.011c0 .199.079.39.22.53l4.242 4.243c.141.14.332.22.53.22h6.011a.75.75 0 0 0 .53-.22Zm2.963-10.473v5.39l-3.804 3.803H5.303L1.5 10.692V5.303L5.303 1.5h5.39l3.803 3.803Z",clipRule:"evenodd"})]})}const mr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:pr})));mr.displayName="DangerIcon";var yr=mr;function br(e){return(0,o.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,o.FD)("g",{fill:"currentColor",clipPath:"url(#FaceFrownIcon_svg__a)",children:[(0,o.Y)("path",{d:"M6 5.25a.75.75 0 0 0 0 1.5h.007a.75.75 0 0 0 0-1.5H6ZM9.25 6a.75.75 0 0 1 .75-.75h.007a.75.75 0 0 1 0 1.5H10A.75.75 0 0 1 9.25 6ZM10.07 11.12a.75.75 0 0 0 1.197-.903l-.001-.001v-.001l-.003-.003-.005-.006-.015-.02a2.95 2.95 0 0 0-.217-.246 4.717 4.717 0 0 0-.627-.546C9.86 9 9.04 8.584 8 8.584s-1.858.416-2.4.81a4.716 4.716 0 0 0-.795.733 2.87 2.87 0 0 0-.048.06l-.015.019-.005.006-.002.003-.031.044.03-.042a.75.75 0 1 0 1.22.875 3.219 3.219 0 0 1 .529-.485c.375-.273.89-.523 1.517-.523.627 0 1.142.25 1.517.523a3.219 3.219 0 0 1 .529.485l.021.025.002.003Z"}),(0,o.Y)("path",{fillRule:"evenodd",d:"M8 .583a7.417 7.417 0 1 0 0 14.834A7.417 7.417 0 0 0 8 .583ZM2.083 8a5.917 5.917 0 1 1 11.834 0A5.917 5.917 0 0 1 2.083 8Z",clipRule:"evenodd"})]}),(0,o.Y)("defs",{children:(0,o.Y)("clipPath",{children:(0,o.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const vr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:br})));vr.displayName="FaceFrownIcon";function Dr(e){return(0,o.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,o.FD)("g",{fill:"currentColor",fillRule:"evenodd",clipPath:"url(#FaceNeutralIcon_svg__a)",clipRule:"evenodd",children:[(0,o.Y)("path",{d:"M8 2.083a5.917 5.917 0 1 0 0 11.834A5.917 5.917 0 0 0 8 2.084ZM.583 8a7.417 7.417 0 1 1 14.834 0A7.417 7.417 0 0 1 .583 8Z"}),(0,o.Y)("path",{d:"M4.583 10a.75.75 0 0 1 .75-.75h5.334a.75.75 0 1 1 0 1.5H5.333a.75.75 0 0 1-.75-.75ZM5.25 6A.75.75 0 0 1 6 5.25h.007a.75.75 0 0 1 0 1.5H6A.75.75 0 0 1 5.25 6ZM9.25 6a.75.75 0 0 1 .75-.75h.007a.75.75 0 1 1 0 1.5H10A.75.75 0 0 1 9.25 6Z"})]}),(0,o.Y)("defs",{children:(0,o.Y)("clipPath",{children:(0,o.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const xr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:Dr})));xr.displayName="FaceNeutralIcon";function kr(e){return(0,o.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,o.FD)("g",{fill:"currentColor",clipPath:"url(#FaceSmileIcon_svg__a)",children:[(0,o.Y)("path",{fillRule:"evenodd",d:"M8 2.083a5.917 5.917 0 1 0 0 11.834A5.917 5.917 0 0 0 8 2.084ZM.583 8a7.417 7.417 0 1 1 14.834 0A7.417 7.417 0 0 1 .583 8Z",clipRule:"evenodd"}),(0,o.Y)("path",{d:"M4.883 8.733a.75.75 0 0 1 1.048.147l.002.003.021.026a3.216 3.216 0 0 0 .529.485c.375.273.89.523 1.517.523.627 0 1.142-.25 1.517-.523a3.215 3.215 0 0 0 .55-.511.75.75 0 0 1 1.2.9l.029-.042-.03.043-.001.002-.002.002-.005.007-.015.019a3.878 3.878 0 0 1-.217.247c-.144.15-.354.348-.627.546-.54.393-1.359.81-2.399.81s-1.858-.417-2.4-.81a4.716 4.716 0 0 1-.795-.734 2.643 2.643 0 0 1-.048-.059l-.015-.02-.005-.006-.002-.002v-.002h-.002a.75.75 0 0 1 .15-1.05Z"}),(0,o.Y)("path",{fillRule:"evenodd",d:"M5.25 6A.75.75 0 0 1 6 5.25h.007a.75.75 0 0 1 0 1.5H6A.75.75 0 0 1 5.25 6ZM9.25 6a.75.75 0 0 1 .75-.75h.007a.75.75 0 1 1 0 1.5H10A.75.75 0 0 1 9.25 6Z",clipRule:"evenodd"})]}),(0,o.Y)("defs",{children:(0,o.Y)("clipPath",{children:(0,o.Y)("path",{fill:"#fff",d:"M0 0h16v16H0z"})})})]})}const wr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:kr})));wr.displayName="FaceSmileIcon";function Tr(e){return(0,o.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M23.212 12a.788.788 0 0 1-.789-.788 9.57 9.57 0 0 0-.757-3.751 9.662 9.662 0 0 0-5.129-5.129 9.587 9.587 0 0 0-3.749-.755.788.788 0 0 1 0-1.577c1.513 0 2.983.296 4.365.882a11.128 11.128 0 0 1 3.562 2.403 11.157 11.157 0 0 1 3.283 7.927.785.785 0 0 1-.786.788Z",clipRule:"evenodd"})})}const Br=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:Tr})));Br.displayName="LoadingIcon";var Cr=Br;function Ar(e){return(0,o.Y)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M16.25 2a.75.75 0 0 0-1.248-.56l-4.287 3.81H4A2.75 2.75 0 0 0 1.25 8v2A2.75 2.75 0 0 0 4 12.75h1.75V16a.75.75 0 0 0 1.5 0v-3.25h3.465l4.287 3.81A.75.75 0 0 0 16.25 16V2Zm-4.752 4.56 3.252-2.89v10.66l-3.252-2.89a.75.75 0 0 0-.498-.19H4c-.69 0-1.25-.56-1.25-1.25V8c0-.69.56-1.25 1.25-1.25h7a.75.75 0 0 0 .498-.19Z",clipRule:"evenodd"})})}const Pr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:Ar})));Pr.displayName="MegaphoneIcon";function Hr(e){return(0,o.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,o.Y)("path",{fill:"currentColor",d:"M10 1h5v5h-1.5V3.56L8.53 8.53 7.47 7.47l4.97-4.97H10V1Z"}),(0,o.Y)("path",{fill:"currentColor",d:"M1 2.75A.75.75 0 0 1 1.75 2H8v1.5H2.5v10h10V8H14v6.25a.75.75 0 0 1-.75.75H1.75a.75.75 0 0 1-.75-.75V2.75Z"})]})}const Sr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:Hr})));Sr.displayName="NewWindowIcon";var Ir=Sr;function $r(e){return(0,o.FD)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,o.Y)("path",{fill:"currentColor",d:"M7.25 10V6.5h1.5V10h-1.5ZM8 12.5A.75.75 0 1 0 8 11a.75.75 0 0 0 0 1.5Z"}),(0,o.Y)("path",{fill:"currentColor",fillRule:"evenodd",d:"M8 1a.75.75 0 0 1 .649.374l7.25 12.5A.75.75 0 0 1 15.25 15H.75a.75.75 0 0 1-.649-1.126l7.25-12.5A.75.75 0 0 1 8 1Zm0 2.245L2.052 13.5h11.896L8 3.245Z",clipRule:"evenodd"})]})}const Fr=(0,t.forwardRef)(((e,r)=>(0,o.Y)(er,{ref:r,...e,component:$r})));Fr.displayName="WarningIcon";var Mr=Fr;const{Text:Yr}=s.A;function Rr(e,r){return(0,i.AH)({"&&":{display:"block",fontSize:e.typography.fontSizeSm,lineHeight:e.typography.lineHeightSm,color:e.colors.textSecondary,...r.withoutMargins&&{"&&":{marginTop:0,marginBottom:0}}}},"","")}function Nr(e){const{dangerouslySetAntdProps:r,bold:n,withoutMargins:t,color:a,...i}=e,{theme:l}=Me();return(0,o.Y)(_e,{children:(0,o.Y)(Yr,{...i,css:Rr(l,e),...r})})}const Er=(e,r)=>{const n=`.${r}-typography`,t={[`&${n}, &${n}:focus`]:{color:e.colors.actionTertiaryTextDefault},[`&${n}:hover, &${n}:hover .anticon`]:{color:e.colors.actionTertiaryTextHover,textDecoration:"underline"},[`&${n}:active, &${n}:active .anticon`]:{color:e.colors.actionTertiaryTextPress,textDecoration:"underline"},[`&${n}:focus-visible`]:{textDecoration:"underline"},".anticon":{fontSize:12,verticalAlign:"baseline"}};return(0,i.AH)(t,"","")},zr=()=>{const e={paddingRight:"calc(2px + 1em)",position:"relative"};return(0,i.AH)(e,"","")},Lr=e=>{const r={marginLeft:2,color:e.colors.actionTertiaryTextDefault};return(0,i.AH)(r,"","")},Vr=e=>{const r={position:"absolute",right:0,bottom:0,top:0,display:"flex",alignItems:"center",...e&&{fontSize:12}};return(0,i.AH)(r,"","")},Wr=(0,t.forwardRef)((function(e,r){let{dangerouslySetAntdProps:n,...t}=e;const{children:a,openInNewTab:i,...l}=t,{theme:c,classNamePrefix:d}=Me(),u={rel:"noopener noreferrer",target:"_blank"},g=i?{...l,...u}:{...l},f=t.ellipsis&&i?[Er(c,d),zr()]:Er(c,d),h=t.ellipsis?[Lr(c),Vr()]:Lr(c);return(0,o.Y)(_e,{children:(0,o.FD)(s.A.Link,{"aria-disabled":g.disabled,css:f,ref:r,...g,...n,children:[a,i?(0,o.Y)(Ir,{css:h,...u}):null]})})})),{Paragraph:Or}=s.A;function Zr(e,r){return(0,i.AH)({"&&":{fontSize:e.typography.fontSizeBase,fontWeight:e.typography.typographyRegularFontWeight,lineHeight:e.typography.lineHeightBase,color:j(e,r.color,e.colors.textPrimary)},"& .anticon":{verticalAlign:"text-bottom"}},r.disabled&&{"&&":{color:e.colors.actionDisabledText}},r.withoutMargins&&{"&&":{marginTop:0,marginBottom:0}},"","")}function Ur(e){const{dangerouslySetAntdProps:r,withoutMargins:n,color:t,...a}=e,{theme:i}=Me();return(0,o.Y)(_e,{children:(0,o.Y)(Or,{...a,className:a.className,css:Zr(i,e),...r})})}const{Text:_r}=s.A;function jr(e,r){return(0,i.AH)({"&&":{fontSize:e.typography.fontSizeBase,fontWeight:e.typography.typographyRegularFontWeight,lineHeight:e.typography.lineHeightBase,color:j(e,r.color,e.colors.textPrimary)}},r.disabled&&{"&&":{color:e.colors.actionDisabledText}},r.hint&&{"&&":{fontSize:e.typography.fontSizeSm,lineHeight:e.typography.lineHeightSm}},r.bold&&{"&&":{fontSize:e.typography.fontSizeBase,fontWeight:e.typography.typographyBoldFontWeight,lineHeight:e.typography.lineHeightBase}},r.code&&{"&& > code":{color:e.colors.textPrimary,fontSize:e.typography.fontSizeBase,lineHeight:e.typography.lineHeightBase,background:e.colors.typographyCodeBg,fontFamily:"monospace",borderRadius:e.borders.borderRadiusMd,padding:"2px 4px",border:"unset",margin:0}},r.size&&{"&&":(()=>{switch(r.size){case"xxl":return{fontSize:e.typography.fontSizeXxl,lineHeight:e.typography.lineHeightXxl,"& .anticon":{lineHeight:e.typography.lineHeightXxl,verticalAlign:"middle"}};case"xl":return{fontSize:e.typography.fontSizeXl,lineHeight:e.typography.lineHeightXl,"& .anticon":{lineHeight:e.typography.lineHeightXl,verticalAlign:"middle"}};case"lg":return{fontSize:e.typography.fontSizeLg,lineHeight:e.typography.lineHeightLg,"& .anticon":{lineHeight:e.typography.lineHeightLg,verticalAlign:"middle"}};case"sm":return{fontSize:e.typography.fontSizeSm,lineHeight:e.typography.lineHeightSm,"& .anticon":{verticalAlign:"-0.219em"}};default:return{}}})()},r.withoutMargins&&{"&&":{marginTop:0,marginBottom:0}},"","")}function Xr(e){const{dangerouslySetAntdProps:r,bold:n,hint:t,withoutMargins:a,color:i,...l}=e,{theme:c}=Me();return(0,o.Y)(_e,{children:(0,o.Y)(_r,{...l,className:l.className,css:jr(c,e),...r})})}const{Title:qr}=s.A;function Gr(e,r){return(0,i.AH)(function(e,r){switch(r.level){case 1:return(0,i.AH)({"&&":{fontSize:e.typography.fontSizeXxl,lineHeight:e.typography.lineHeightXxl,fontWeight:e.typography.typographyBoldFontWeight},"& > .anticon":{lineHeight:e.typography.lineHeightXxl}},"","");case 2:return(0,i.AH)({"&&":{fontSize:e.typography.fontSizeXl,lineHeight:e.typography.lineHeightXl,fontWeight:e.typography.typographyBoldFontWeight},"& > .anticon":{lineHeight:e.typography.lineHeightXl}},"","");case 3:return(0,i.AH)({"&&":{fontSize:e.typography.fontSizeLg,lineHeight:e.typography.lineHeightLg,fontWeight:e.typography.typographyBoldFontWeight},"& > .anticon":{lineHeight:e.typography.lineHeightLg}},"","");default:return(0,i.AH)({"&&":{fontSize:e.typography.fontSizeMd,lineHeight:e.typography.lineHeightMd,fontWeight:e.typography.typographyBoldFontWeight},"& > .anticon":{lineHeight:e.typography.lineHeightMd}},"","")}}(e,r),{"&&":{color:j(e,r.color,e.colors.textPrimary)},"& > .anticon":{verticalAlign:"middle"}},r.withoutMargins&&{"&&":{marginTop:"0 !important",marginBottom:"0 !important"}},"","")}function Jr(e){const{dangerouslySetAntdProps:r,withoutMargins:n,color:t,...a}=e,{theme:i}=Me();return(0,o.Y)(_e,{children:(0,o.Y)(qr,{...a,className:a.className,css:Gr(i,e),...r})})}const Kr=(()=>{function e(e){let{dangerouslySetAntdProps:r,...n}=e;return(0,o.Y)(_e,{children:(0,o.Y)(s.A,{...n,...r})})}return e.Text=Xr,e.Title=Jr,e.Paragraph=Ur,e.Link=Wr,e.Hint=Nr,e})();function Qr(e){let r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{...{backgroundColor:e.colors.actionDefaultBackgroundDefault,borderColor:e.colors.actionDefaultBorderDefault,color:e.colors.actionDefaultTextDefault},lineHeight:e.typography.lineHeightBase,textDecoration:"none","&:hover":{backgroundColor:e.colors.actionDefaultBackgroundHover,borderColor:e.colors.actionDefaultBorderHover,color:e.colors.actionDefaultTextHover},"&:active":{backgroundColor:r?e.colors.actionDefaultBackgroundDefault:e.colors.actionDefaultBackgroundPress,borderColor:e.colors.actionDefaultBorderPress,color:e.colors.actionDefaultTextPress}}}function en(e){return{...{backgroundColor:e.colors.actionPrimaryBackgroundDefault,borderColor:"transparent",color:e.colors.actionPrimaryTextDefault},textShadow:"none","&:hover":{backgroundColor:e.colors.actionPrimaryBackgroundHover,borderColor:"transparent",color:e.colors.actionPrimaryTextHover},"&:active":{backgroundColor:e.colors.actionPrimaryBackgroundPress,borderColor:"transparent",color:e.colors.actionPrimaryTextPress}}}function rn(e){return{...{backgroundColor:e.colors.actionTertiaryBackgroundDefault,borderColor:e.colors.actionTertiaryBackgroundDefault,color:e.colors.actionTertiaryTextDefault},"&:hover":{backgroundColor:e.colors.actionTertiaryBackgroundHover,borderColor:"transparent",color:e.colors.actionTertiaryTextHover},"&:active":{backgroundColor:e.colors.actionTertiaryBackgroundPress,borderColor:"transparent",color:e.colors.actionTertiaryTextPress},"&[disabled]:hover":{background:"none",color:e.colors.actionDisabledText}}}function nn(e){return{...{backgroundColor:e.colors.actionDangerPrimaryBackgroundDefault,borderColor:"transparent",color:e.colors.actionPrimaryTextDefault},"&:hover":{backgroundColor:e.colors.actionDangerPrimaryBackgroundHover,borderColor:"transparent",color:e.colors.actionPrimaryTextHover},"&:active":{backgroundColor:e.colors.actionDangerPrimaryBackgroundPress,borderColor:"transparent",color:e.colors.actionPrimaryTextPress},"&:focus-visible":{outlineColor:e.colors.actionDangerPrimaryBackgroundDefault}}}function tn(e){return{...{backgroundColor:e.colors.actionDangerDefaultBackgroundDefault,borderColor:e.colors.actionDangerDefaultBorderDefault,color:e.colors.actionDangerDefaultTextDefault},"&:hover":{backgroundColor:e.colors.actionDangerDefaultBackgroundHover,borderColor:e.colors.actionDangerDefaultBorderHover,color:e.colors.actionDangerDefaultTextHover},"&:active":{backgroundColor:e.colors.actionDangerDefaultBackgroundPress,borderColor:e.colors.actionDangerDefaultBorderPress,color:e.colors.actionDangerDefaultTextPress},"&:focus-visible":{outlineColor:e.colors.actionDangerPrimaryBackgroundDefault}}}function on(e){return{...{backgroundColor:e.colors.actionDisabledBackground,borderColor:"transparent",color:e.colors.actionDisabledText},"&:hover":{backgroundColor:e.colors.actionDisabledBackground,borderColor:"transparent",color:e.colors.actionDisabledText},"&:active":{backgroundColor:e.colors.actionDisabledBackground,borderColor:"transparent",color:e.colors.actionDisabledText}}}function an(e){return{...{backgroundColor:e.colors.actionTertiaryBackgroundDefault,borderColor:"transparent",color:e.colors.actionDisabledText},"&:hover":{backgroundColor:e.colors.actionTertiaryBackgroundDefault,borderColor:"transparent",color:e.colors.actionDisabledText},"&:active":{backgroundColor:e.colors.actionTertiaryBackgroundDefault,borderColor:"transparent",color:e.colors.actionDisabledText}}}let ln=function(e){return e.Banner="banner",e.Button="button",e.Input="input",e.Modal="modal",e}({}),cn=function(e){return e.OnClick="onClick",e.OnView="onView",e.OnValueChange="onValueChange",e}({});const sn=(e,r)=>r.includes(e),dn={callback:()=>{}},un=t.createContext(dn),gn=e=>{let{componentType:r,componentId:n,analyticsEvents:o}=e;const a=(0,t.useContext)(un);return(0,t.useMemo)((()=>a===dn||void 0===n?{onClick:()=>{},onValueChange:()=>{},onView:()=>{}}:{onClick:()=>{sn(cn.OnClick,o)&&a.callback(cn.OnClick,r,n)},onValueChange:()=>{sn(cn.OnValueChange,o)&&a.callback(cn.OnValueChange,r,n)},onView:()=>{sn(cn.OnView,o)&&a.callback(cn.OnView,r,n)}}),[a,r,n,o])};const fn=Symbol("NOT_INITIALIZED");let hn=0;function pn(){return function(e){const r=(0,t.useRef)(fn);if(r.current===fn){const n=e();return r.current=n,n}return r.current}((()=>hn++))}const mn=(0,t.createContext)(null),yn=e=>{let{description:r="Generic UI loading state"}=e;const n=pn(),o=(0,t.useContext)(mn);return(0,t.useLayoutEffect)((()=>(o&&o.startLoading(n,r),()=>{o&&o.endLoading(n)})),[n,r,o]),null},bn=(0,i.i7)({"0%":{transform:"rotate(0deg) translate3d(0, 0, 0)"},"100%":{transform:"rotate(360deg) translate3d(0, 0, 0)"}}),vn=function(e){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;const n={animation:`${bn} ${arguments.length>3&&void 0!==arguments[3]?arguments[3]:1}s steps(${arguments.length>1&&void 0!==arguments[1]?arguments[1]:60}, end) infinite`,...arguments.length>4&&void 0!==arguments[4]&&arguments[4]?{color:"inherit"}:{color:e.colors.textSecondary},animationDelay:`${r}s`,"@media only percy":{animation:"none"}};return(0,i.AH)(_(n),"","")},Dn=e=>{let{frameRate:r,size:n="default",delay:t,className:a,label:i,animationDuration:l,inheritColor:c,loading:s=!0,loadingDescription:d="Spinner",...u}=e;const{classNamePrefix:g,theme:f}=Me(),h="small"===n?"-sm":"large"===n?"-lg":"",p=`${a||""} ${g}-spin ${h?`${g}-spin${h}`:""} ${g}-spin-spinning ${ze}`.trim(),m=`${g}-spin-dot ${ze}`.trim();return(0,o.FD)("div",{...u,className:p,children:[s&&(0,o.Y)(yn,{description:d}),(0,o.Y)(he,{label:i,children:(0,o.Y)(Cr,{"aria-hidden":"false",css:vn(f,r,t,l,c),className:m})})]})},xn=(e,r)=>{try{const n=window.__debug__safex;return n?n(e,r):r}catch(n){return r}};function kn(e){return`${e.general.iconfontCssPrefix}-btn-end-icon`}const wn=e=>{let{theme:r,classNamePrefix:n,loading:t,withIcon:o,onlyIcon:a,isAnchor:l,enableAnimation:c,size:s,type:d,isFlex:u,useFocusPseudoClass:g,forceIconStyles:f,danger:h}=e;const p=`.${r.general.iconfontCssPrefix}`,m=`.${kn(r)}`,y=`.${n}-btn-loading-icon`,b=`.${n}-btn-icon-only`,v=`.${n}-btn-primary`,D=`.${n}-btn-link`,x=`.${n}-btn-dangerous`,k={background:r.colors.actionTertiaryBackgroundDefault,color:r.colors.actionTertiaryTextDefault,"&:hover":{background:r.colors.actionTertiaryBackgroundHover,color:r.colors.actionTertiaryTextHover},"&:active":{background:r.colors.actionTertiaryBackgroundPress,color:r.colors.actionTertiaryTextPress}},w={fontSize:r.general.iconFontSize,...!u&&{verticalAlign:-4,...a&&{verticalAlign:-3},...!a&&{verticalAlign:-3}},lineHeight:0,..."small"===s&&{lineHeight:r.typography.lineHeightSm,...(a||f)&&{fontSize:16,...u&&{height:16}}}},T={color:r.colors.textSecondary},B=`span > ${m} > ${p}`,C={lineHeight:r.typography.lineHeightBase,boxShadow:"none",height:r.general.heightSm,...u&&{display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"middle"},...!a&&!f&&{"&&":{padding:"4px 12px",..."small"===s&&{padding:"0 8px"}}},...(a||f)&&{width:r.general.heightSm},..."small"===s&&{height:24,lineHeight:r.typography.lineHeightBase,...(a||f)&&{width:24,paddingTop:0,paddingBottom:0,verticalAlign:"middle"}},"&:focus-visible":{outlineStyle:"solid",outlineWidth:"2px",outlineOffset:"1px",outlineColor:r.isDarkMode?r.colors.actionDefaultBorderFocus:r.colors.primary},...Qr(r,t),[`&${v}`]:{...en(r)},[`&${D}`]:{...rn(r),..."link"===d&&{padding:"unset",height:"auto",border:"none",boxShadow:"none","&[disabled],&:hover":{background:"none"}}},[`&${x}${v}`]:{...nn(r)},[`&${x}`]:{...tn(r)},[`&[disabled], &${x}:disabled`]:{...on(r),...(a||f)&&{backgroundColor:"transparent","&:hover":{backgroundColor:"transparent"},"&:active":{backgroundColor:"transparent"}}},[y]:{display:"none"},...t&&{"::before":{opacity:0},cursor:"default",[`${y}`]:{...a?{verticalAlign:"middle"}:{position:"absolute"},...!u&&!f&&{left:"calc(50% - 7px)"},svg:{animationDuration:"1s !important"}},[`& > ${y} .anticon`]:{paddingRight:0},[`> :not(${y})`]:{opacity:0,visibility:"hidden",...o&&{paddingLeft:r.general.iconFontSize+r.spacing.xs}}},[`> ${p} + span, > span + ${p}`]:{marginRight:0,marginLeft:r.spacing.xs},[`> ${p}`]:w,[`> ${B}`]:{...w,marginLeft:r.spacing.sm},...!d&&!h&&{[`&:enabled:not(:hover):not(:active) > ${p}`]:T},...!d&&!h&&{[`&:enabled:not(:hover):not(:active) > ${B}`]:T},[`&[${n}-click-animating-without-extra-node='true']::after`]:{display:"none"},[`&${b}`]:{border:"none",[`&:enabled:not(${D})`]:{...k,color:r.colors.textSecondary,"&:hover > .anticon":{color:k["&:hover"].color,...h&&{color:r.colors.actionDangerDefaultTextHover}},"&:active > .anticon":{color:k["&:active"].color,...h&&{color:r.colors.actionDangerDefaultTextPress}},...t&&{"&&, &:hover, &:active":{backgroundColor:"transparent"}}},[`&:enabled:not(${D}) > .anticon`]:{color:r.colors.textSecondary,...h&&{color:r.colors.actionDangerDefaultTextDefault}},...l&&{lineHeight:`${r.general.heightSm}px`,...rn(r),"&:disabled":{color:r.colors.actionDisabledText}},...t&&{"&&, &:hover, &:active":{backgroundColor:"transparent"}},"&[disabled]:hover":{backgroundColor:"transparent"}},"&:focus":{...g&&{outlineStyle:"solid",outlineWidth:"2px",outlineOffset:"1px",outlineColor:r.isDarkMode?r.colors.actionDefaultBorderFocus:r.colors.primary},[`${y}`]:{...a&&{left:0}}},...f&&{padding:"0 6px",lineHeight:r.typography.lineHeightSm,color:r.colors.textSecondary,...t&&{"&&, &:hover, &:active":{backgroundColor:"transparent",borderColor:r.colors.actionDefaultBorderDefault},"&[disabled], &[disabled]:hover, &[disabled]:active":{backgroundColor:"transparent",borderColor:"transparent"}},"& > span":{verticalAlign:-1,height:r.general.heightSm/2,width:r.general.heightSm/2},[`& > ${y} .anticon`]:{height:r.general.heightSm/2,width:r.general.heightSm/2,padding:0}},...Le(c)},A={..."tertiary"===d&&{[`&:enabled:not(${b})`]:k,[`&${D}[disabled]`]:{...an(r)}}},P=_(C),H=_(A);return(0,i.AH)(P,H,"","")},Tn=(()=>{const e=(0,t.forwardRef)((function(e,r){let{dangerouslySetAntdProps:n,children:a,size:l,type:c,loading:s,loadingDescription:u="Button",endIcon:g,onClick:f,dangerouslySetForceIconStyles:h,dangerouslyUseFocusPseudoClass:p,dangerouslyAppendWrapperCss:m,componentId:y,analyticsEvents:b,...v}=e;const{theme:D,classNamePrefix:x}=Me(),{USE_FLEX_BUTTON:k}=Ge(),w=gn({componentType:ln.Button,componentId:y,analyticsEvents:null!==b&&void 0!==b?b:[cn.OnClick]}),T=xn("databricks.fe.designsystem.useFlexButtonStyles",!1),B=k||T,C=kn(D),A=`${x}-btn-loading-icon`,P=(0,t.useRef)(null);(0,t.useImperativeHandle)(r,(()=>P.current)),(0,t.useEffect)((()=>{P.current&&(s?(P.current.setAttribute("loading","true"),P.current.classList.add(`${x}-btn-loading`)):(P.current.setAttribute("loading","false"),P.current.classList.remove(`${x}-btn-loading`)))}),[s,x]);const H=Boolean((v.icon||g)&&!a),S=(0,o.Y)(Dn,{className:A,animationDuration:8,inheritColor:!0,label:"loading","aria-label":"loading",loadingDescription:u,css:(0,i.AH)({color:"inherit !important",pointerEvents:"none",...!H&&!h&&{".anticon":{verticalAlign:"-0.2em"}},'[aria-hidden="true"]':{display:"inline"}},"","")});return(0,o.Y)(_e,{children:(0,o.Y)(d.A,{...xn("databricks.fe.designsystem.showDebugOutline",!1)?{"data-dubois-show-outline":!0}:{},...v,css:wn({theme:D,classNamePrefix:x,loading:Boolean(s),withIcon:Boolean(v.icon),onlyIcon:H,isAnchor:Boolean(v.href&&!c),danger:Boolean(v.danger),enableAnimation:D.options.enableAnimation,size:l||"middle",type:c,isFlex:B,forceIconStyles:Boolean(h),useFocusPseudoClass:Boolean(p)}),href:v.disabled?void 0:v.href,...n,onClick:e=>{s||(w.onClick(),null===f||void 0===f||f(e))},icon:s?S:v.icon,ref:P,type:"tertiary"===c?"link":c,children:a&&(0,o.FD)("span",{style:{visibility:s?"hidden":"visible",...B&&{display:"inline-flex",alignItems:"center"},...m},children:[a,g&&(0,o.Y)("span",{className:C,style:{...B&&{display:"inline-flex",alignItems:"center"}},children:g})]})})})}));return e.__ANT_BUTTON=!0,e})(),Bn=(e,r)=>{const n=`.${e}-input`,t=`.${e}-btn`;return(0,i.AH)({display:"inline-flex !important",width:"auto",[`& > ${n}`]:{flexGrow:1,"&:disabled":{border:"none","&:hover":{borderRight:`1px solid ${r.colors.actionDisabledText} !important`}},"&[data-validation]":{marginRight:0}},[`& > ${t} > span`]:{verticalAlign:"middle"},[`& > ${t}:disabled, & > ${t}:disabled:hover`]:{borderLeft:`1px solid ${r.colors.actionDisabledText} !important`}},"","")},Cn=(e,r,n,t)=>{let{validationState:o}=n;const a=((e,r,n,t)=>{let{validationState:o}=n,{useTransparent:a=!1,useFocusWithin:i=!1}=t;const l=`.${e}-input`,c=`.${e}-input-affix-wrapper`,s=`.${e}-input-affix-wrapper-focused`,d=`.${e}-input-clear-icon`,u=`.${e}-input-prefix`,g=`.${e}-input-suffix`,f=X(r,o),h=i?"focus-within":"focus";return{"&&":{lineHeight:r.typography.lineHeightBase,minHeight:r.general.heightSm,...o&&{borderColor:f},"&:hover":{borderColor:o?f:r.colors.actionPrimaryBackgroundHover},[`&:${h}`]:{outlineColor:o?f:r.colors.actionPrimaryBackgroundDefault,outlineWidth:2,outlineOffset:-2,outlineStyle:"solid",boxShadow:"none",borderColor:"transparent"},"&:disabled":{backgroundColor:r.colors.actionDisabledBackground,color:r.colors.actionDisabledText},"&::placeholder":{color:r.colors.textPlaceholder}},[`&${l}, ${l}`]:{...a&&{backgroundColor:"transparent"}},[`&${c}`]:{...a&&{backgroundColor:"transparent"},lineHeight:r.typography.lineHeightBase,paddingTop:5,paddingBottom:5,minHeight:r.general.heightSm,"::before":{lineHeight:r.typography.lineHeightBase},"&:hover":{borderColor:r.colors.actionPrimaryBackgroundHover},[`input.${e}-input`]:{borderRadius:0}},[`&${s}`]:{boxShadow:"none",[`&&, &:${h}`]:{outlineColor:r.colors.actionPrimaryBackgroundDefault,outlineWidth:2,outlineOffset:-2,outlineStyle:"solid",boxShadow:"none",borderColor:"transparent"}},[d]:{fontSize:r.typography.fontSizeSm},[u]:{marginRight:r.spacing.sm,color:r.colors.textSecondary},[g]:{marginLeft:r.spacing.sm,color:r.colors.textSecondary},...Le(r.options.enableAnimation)}})(e,r,{validationState:o},{useTransparent:t});return(0,i.AH)(_(a),"","")},An=(0,t.forwardRef)((function(e,r){let{validationState:n,autoComplete:a="off",dangerouslySetAntdProps:i,dangerouslyAppendEmotionCSS:l,onChange:c,onClear:s,onFocus:d,componentId:g,analyticsEvents:f,...h}=e;const{classNamePrefix:p,theme:m}=Me(),y=xn("databricks.fe.designsystem.useTransparentInput",!1),b=gn({componentType:ln.Input,componentId:g,analyticsEvents:null!==f&&void 0!==f?f:[cn.OnValueChange]}),{callbackOnceUntilReset:v,reset:D}=(e=>{const r=(0,t.useRef)(!0),n=(0,t.useCallback)((()=>{r.current=!0}),[]);return{callbackOnceUntilReset:(0,t.useCallback)((()=>{r.current&&(e(),r.current=!1)}),[e]),reset:n}})(b.onValueChange);return(0,o.Y)(_e,{children:(0,o.Y)(u.A,{autoComplete:a,"data-validation":n,ref:r,css:[Cn(p,m,{validationState:n},y),l,""],onChange:e=>{v(),!e.target.value&&e.nativeEvent instanceof InputEvent===!1&&s?null===s||void 0===s||s():null===c||void 0===c||c(e)},onFocus:e=>{D(),null===d||void 0===d||d(e)},...h,...i})})})),Pn=(0,t.forwardRef)((function(e,r){let{validationState:n,autoComplete:t="off",dangerouslySetAntdProps:a,dangerouslyAppendEmotionCSS:i,...l}=e;const{classNamePrefix:c,theme:s}=Me(),d=xn("databricks.fe.designsystem.useTransparentInput",!1);return(0,o.Y)(_e,{children:(0,o.Y)(u.A.Password,{visibilityToggle:!1,ref:r,autoComplete:t,css:[Cn(c,s,{validationState:n},d),i,""],...l,...a})})})),Hn=(0,t.forwardRef)((function(e,r){let{validationState:n,autoComplete:t="off",dangerouslySetAntdProps:a,dangerouslyAppendEmotionCSS:i,...l}=e;const{classNamePrefix:c,theme:s}=Me(),d=xn("databricks.fe.designsystem.useTransparentInput",!1);return(0,o.Y)(_e,{children:(0,o.Y)(u.A.TextArea,{ref:r,autoComplete:t,css:[Cn(c,s,{validationState:n},d),i,""],...l,...a})})})),Sn=Object.assign(An,{TextArea:Hn,Password:Pn,Group:e=>{let{dangerouslySetAntdProps:r,dangerouslyAppendEmotionCSS:n,compact:t=!0,...a}=e;const{classNamePrefix:i,theme:l}=Me();return(0,o.Y)(_e,{children:(0,o.Y)(u.A.Group,{css:[Bn(i,l),n,""],compact:t,...a,...r})})}})},31850:function(e,r,n){"use strict";var t=(0,n(31014).createContext)({});r.A=t},53322:function(e,r,n){"use strict";n.d(r,{A:function(){return k}});var t=n(89379),o=n(31014),a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M464 336a48 48 0 1096 0 48 48 0 10-96 0zm72 112h-48c-4.4 0-8 3.6-8 8v272c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V456c0-4.4-3.6-8-8-8z"}}]},name:"info-circle",theme:"outlined"},i=n(5544),l=n(64467),c=n(80045),s=n(45959),d=n.n(s),u=n(31850),g=n(90053),f=["icon","className","onClick","style","primaryColor","secondaryColor"],h={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1};var p=function(e){var r=e.icon,n=e.className,o=e.onClick,a=e.style,i=e.primaryColor,l=e.secondaryColor,s=(0,c.A)(e,f),d=h;if(i&&(d={primaryColor:i,secondaryColor:l||(0,g.Em)(i)}),(0,g.lf)(),(0,g.$e)((0,g.P3)(r),"icon should be icon definiton, but got ".concat(r)),!(0,g.P3)(r))return null;var u=r;return u&&"function"===typeof u.icon&&(u=(0,t.A)((0,t.A)({},u),{},{icon:u.icon(d.primaryColor,d.secondaryColor)})),(0,g.cM)(u.icon,"svg-".concat(u.name),(0,t.A)({className:n,onClick:o,style:a,"data-icon":u.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},s))};p.displayName="IconReact",p.getTwoToneColors=function(){return(0,t.A)({},h)},p.setTwoToneColors=function(e){var r=e.primaryColor,n=e.secondaryColor;h.primaryColor=r,h.secondaryColor=n||(0,g.Em)(r),h.calculated=!!n};var m=p;function y(e){var r=(0,g.al)(e),n=(0,i.A)(r,2),t=n[0],o=n[1];return m.setTwoToneColors({primaryColor:t,secondaryColor:o})}var b=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];y("#1890ff");var v=o.forwardRef((function(e,r){var n,a=e.className,s=e.icon,f=e.spin,h=e.rotate,p=e.tabIndex,y=e.onClick,v=e.twoToneColor,D=(0,c.A)(e,b),x=o.useContext(u.A).prefixCls,k=void 0===x?"anticon":x,w=d()(k,(n={},(0,l.A)(n,"".concat(k,"-").concat(s.name),!!s.name),(0,l.A)(n,"".concat(k,"-spin"),!!f||"loading"===s.name),n),a),T=p;void 0===T&&y&&(T=-1);var B=h?{msTransform:"rotate(".concat(h,"deg)"),transform:"rotate(".concat(h,"deg)")}:void 0,C=(0,g.al)(v),A=(0,i.A)(C,2),P=A[0],H=A[1];return o.createElement("span",(0,t.A)((0,t.A)({role:"img","aria-label":s.name},D),{},{ref:r,tabIndex:T,onClick:y,className:w}),o.createElement(m,{icon:s,primaryColor:P,secondaryColor:H,style:B}))}));v.displayName="AntdIcon",v.getTwoToneColor=function(){var e=m.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor},v.setTwoToneColor=y;var D=v,x=function(e,r){return o.createElement(D,(0,t.A)((0,t.A)({},e),{},{ref:r,icon:a}))};x.displayName="InfoCircleOutlined";var k=o.forwardRef(x)},90053:function(e,r,n){"use strict";n.d(r,{$e:function(){return d},Em:function(){return h},P3:function(){return u},al:function(){return p},cM:function(){return f},lf:function(){return y},yf:function(){return m}});var t=n(89379),o=n(82284),a=n(9608),i=n(31014),l=n(98680),c=n(95571),s=n(31850);function d(e,r){(0,l.Ay)(e,"[@ant-design/icons] ".concat(r))}function u(e){return"object"===(0,o.A)(e)&&"string"===typeof e.name&&"string"===typeof e.theme&&("object"===(0,o.A)(e.icon)||"function"===typeof e.icon)}function g(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce((function(r,n){var t=e[n];if("class"===n)r.className=t,delete r.class;else r[n]=t;return r}),{})}function f(e,r,n){return n?i.createElement(e.tag,(0,t.A)((0,t.A)({key:r},g(e.attrs)),n),(e.children||[]).map((function(n,t){return f(n,"".concat(r,"-").concat(e.tag,"-").concat(t))}))):i.createElement(e.tag,(0,t.A)({key:r},g(e.attrs)),(e.children||[]).map((function(n,t){return f(n,"".concat(r,"-").concat(e.tag,"-").concat(t))})))}function h(e){return(0,a.cM)(e)[0]}function p(e){return e?Array.isArray(e)?e:[e]:[]}var m={width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true",focusable:"false"},y=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"\n.anticon {\n display: inline-block;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.anticon > * {\n line-height: 1;\n}\n\n.anticon svg {\n display: inline-block;\n}\n\n.anticon::before {\n display: none;\n}\n\n.anticon .anticon-icon {\n display: block;\n}\n\n.anticon[tabindex] {\n cursor: pointer;\n}\n\n.anticon-spin::before,\n.anticon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n",r=(0,i.useContext)(s.A).csp;(0,i.useEffect)((function(){(0,c.BD)(e,"@ant-design-icons",{prepend:!0,csp:r})}),[])}},64449:function(e,r){"use strict";r.parse=function(e,r){if("string"!==typeof e)throw new TypeError("argument str must be a string");for(var t={},a=r||{},l=e.split(o),c=a.decode||n,s=0;s<l.length;s++){var d=l[s],u=d.indexOf("=");if(!(u<0)){var g=d.substr(0,u).trim(),f=d.substr(++u,d.length).trim();'"'==f[0]&&(f=f.slice(1,-1)),void 0==t[g]&&(t[g]=i(f,c))}}return t},r.serialize=function(e,r,n){var o=n||{},i=o.encode||t;if("function"!==typeof i)throw new TypeError("option encode is invalid");if(!a.test(e))throw new TypeError("argument name is invalid");var l=i(r);if(l&&!a.test(l))throw new TypeError("argument val is invalid");var c=e+"="+l;if(null!=o.maxAge){var s=o.maxAge-0;if(isNaN(s))throw new Error("maxAge should be a Number");c+="; Max-Age="+Math.floor(s)}if(o.domain){if(!a.test(o.domain))throw new TypeError("option domain is invalid");c+="; Domain="+o.domain}if(o.path){if(!a.test(o.path))throw new TypeError("option path is invalid");c+="; Path="+o.path}if(o.expires){if("function"!==typeof o.expires.toUTCString)throw new TypeError("option expires is invalid");c+="; Expires="+o.expires.toUTCString()}o.httpOnly&&(c+="; HttpOnly");o.secure&&(c+="; Secure");if(o.sameSite){switch("string"===typeof o.sameSite?o.sameSite.toLowerCase():o.sameSite){case!0:c+="; SameSite=Strict";break;case"lax":c+="; SameSite=Lax";break;case"strict":c+="; SameSite=Strict";break;default:throw new TypeError("option sameSite is invalid")}}return c};var n=decodeURIComponent,t=encodeURIComponent,o=/; */,a=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function i(e,r){try{return r(e)}catch(n){return e}}},16371:function(e,r,n){"use strict";var t=n(59988);e.exports=function(e,r){var n,o,a,i,l,c,s=!1;r||(r={}),n=r.debug||!1;try{if(a=t(),i=document.createRange(),l=document.getSelection(),(c=document.createElement("span")).textContent=e,c.style.all="unset",c.style.position="fixed",c.style.top=0,c.style.clip="rect(0, 0, 0, 0)",c.style.whiteSpace="pre",c.style.webkitUserSelect="text",c.style.MozUserSelect="text",c.style.msUserSelect="text",c.style.userSelect="text",c.addEventListener("copy",(function(n){n.stopPropagation(),r.format&&(n.preventDefault(),n.clipboardData.clearData(),n.clipboardData.setData(r.format,e))})),document.body.appendChild(c),i.selectNodeContents(c),l.addRange(i),!document.execCommand("copy"))throw new Error("copy command was unsuccessful");s=!0}catch(d){n&&console.error("unable to copy using execCommand: ",d),n&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(r.format||"text",e),s=!0}catch(d){n&&console.error("unable to copy using clipboardData: ",d),n&&console.error("falling back to prompt"),o=function(e){var r=(/mac os x/i.test(navigator.userAgent)?"\u2318":"Ctrl")+"+C";return e.replace(/#{\s*key\s*}/g,r)}("message"in r?r.message:"Copy to clipboard: #{key}, Enter"),window.prompt(o,e)}}finally{l&&("function"==typeof l.removeRange?l.removeRange(i):l.removeAllRanges()),c&&document.body.removeChild(c),a()}return s}},24289:function(e,r,n){var t;!function(o){"use strict";var a=function(){var e=/d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZWN]|"[^"]*"|'[^']*'/g,r=/\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,n=/[^-+\dA-Z]/g;return function(t,o,l,c){if(1!==arguments.length||"string"!==function(e){if(null===e)return"null";if(void 0===e)return"undefined";if("object"!==typeof e)return typeof e;if(Array.isArray(e))return"array";return{}.toString.call(e).slice(8,-1).toLowerCase()}(t)||/\d/.test(t)||(o=t,t=void 0),(t=t||new Date)instanceof Date||(t=new Date(t)),isNaN(t))throw TypeError("Invalid date");var s=(o=String(a.masks[o]||o||a.masks.default)).slice(0,4);"UTC:"!==s&&"GMT:"!==s||(o=o.slice(4),l=!0,"GMT:"===s&&(c=!0));var d=l?"getUTC":"get",u=t[d+"Date"](),g=t[d+"Day"](),f=t[d+"Month"](),h=t[d+"FullYear"](),p=t[d+"Hours"](),m=t[d+"Minutes"](),y=t[d+"Seconds"](),b=t[d+"Milliseconds"](),v=l?0:t.getTimezoneOffset(),D=function(e){var r=new Date(e.getFullYear(),e.getMonth(),e.getDate());r.setDate(r.getDate()-(r.getDay()+6)%7+3);var n=new Date(r.getFullYear(),0,4);n.setDate(n.getDate()-(n.getDay()+6)%7+3);var t=r.getTimezoneOffset()-n.getTimezoneOffset();r.setHours(r.getHours()-t);var o=(r-n)/6048e5;return 1+Math.floor(o)}(t),x=function(e){var r=e.getDay();0===r&&(r=7);return r}(t),k={d:u,dd:i(u),ddd:a.i18n.dayNames[g],dddd:a.i18n.dayNames[g+7],m:f+1,mm:i(f+1),mmm:a.i18n.monthNames[f],mmmm:a.i18n.monthNames[f+12],yy:String(h).slice(2),yyyy:h,h:p%12||12,hh:i(p%12||12),H:p,HH:i(p),M:m,MM:i(m),s:y,ss:i(y),l:i(b,3),L:i(Math.round(b/10)),t:p<12?a.i18n.timeNames[0]:a.i18n.timeNames[1],tt:p<12?a.i18n.timeNames[2]:a.i18n.timeNames[3],T:p<12?a.i18n.timeNames[4]:a.i18n.timeNames[5],TT:p<12?a.i18n.timeNames[6]:a.i18n.timeNames[7],Z:c?"GMT":l?"UTC":(String(t).match(r)||[""]).pop().replace(n,""),o:(v>0?"-":"+")+i(100*Math.floor(Math.abs(v)/60)+Math.abs(v)%60,4),S:["th","st","nd","rd"][u%10>3?0:(u%100-u%10!=10)*u%10],W:D,N:x};return o.replace(e,(function(e){return e in k?k[e]:e.slice(1,e.length-1)}))}}();function i(e,r){for(e=String(e),r=r||2;e.length<r;)e="0"+e;return e}a.masks={default:"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:sso",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'",expiresHeaderFormat:"ddd, dd mmm yyyy HH:MM:ss Z"},a.i18n={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"],timeNames:["a","p","am","pm","A","P","AM","PM"]},void 0===(t=function(){return a}.call(r,n,r,e))||(e.exports=t)}()},5531:function(e,r,n){"use strict";var t=n(27262)(),o=n(66535),a=t&&o("%Object.defineProperty%",!0);if(a)try{a({},"a",{value:1})}catch(s){a=!1}var i=o("%SyntaxError%"),l=o("%TypeError%"),c=n(58833);e.exports=function(e,r,n){if(!e||"object"!==typeof e&&"function"!==typeof e)throw new l("`obj` must be an object or a function`");if("string"!==typeof r&&"symbol"!==typeof r)throw new l("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!==typeof arguments[3]&&null!==arguments[3])throw new l("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!==typeof arguments[4]&&null!==arguments[4])throw new l("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!==typeof arguments[5]&&null!==arguments[5])throw new l("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!==typeof arguments[6])throw new l("`loose`, if provided, must be a boolean");var t=arguments.length>3?arguments[3]:null,o=arguments.length>4?arguments[4]:null,s=arguments.length>5?arguments[5]:null,d=arguments.length>6&&arguments[6],u=!!c&&c(e,r);if(a)a(e,r,{configurable:null===s&&u?u.configurable:!s,enumerable:null===t&&u?u.enumerable:!t,value:n,writable:null===o&&u?u.writable:!o});else{if(!d&&(t||o||s))throw new i("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");e[r]=n}}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9369],{35722:function(t,e,a){var r=a(62258),i=a(47001).de,n=a(63539).OE,o=a(83491),l=a(62282),s=a(16545),u=a(92704),c=a(47401),d=a(31454),f=a(9405).BADNUM,p=a(77063),h=a(75152).clearSelect,g=a(46218),m=a(81255),y=a(13373).eV,v=c.relinkPrivateKeys,x=c._,_=t.exports={};c.extendFlat(_,l),_.attributes=a(42837),_.attributes.type.values=_.allTypes,_.fontAttrs=a(5153),_.layoutAttributes=a(19744),_.fontWeight="normal";var b=_.transformsRegistry,k=a(73435);_.executeAPICommand=k.executeAPICommand,_.computeAPICommandBindings=k.computeAPICommandBindings,_.manageCommandObserver=k.manageCommandObserver,_.hasSimpleAPICommandBindings=k.hasSimpleAPICommandBindings,_.redrawText=function(t){return t=c.getGraphDiv(t),new Promise((function(e){setTimeout((function(){t._fullLayout&&(l.getComponentMethod("annotations","draw")(t),l.getComponentMethod("legend","draw")(t),l.getComponentMethod("colorbar","draw")(t),e(_.previousPromises(t)))}),300)}))},_.resize=function(t){var e;t=c.getGraphDiv(t);var a=new Promise((function(a,r){t&&!c.isHidden(t)||r(new Error("Resize must be passed a displayed plot div element.")),t._redrawTimer&&clearTimeout(t._redrawTimer),t._resolveResize&&(e=t._resolveResize),t._resolveResize=a,t._redrawTimer=setTimeout((function(){if(!t.layout||t.layout.width&&t.layout.height||c.isHidden(t))a(t);else{delete t.layout.width,delete t.layout.height;var e=t.changed;t.autoplay=!0,l.call("relayout",t,{autosize:!0}).then((function(){t.changed=e,t._resolveResize===a&&(delete t._resolveResize,a(t))}))}}),100)}));return e&&e(a),a},_.previousPromises=function(t){if((t._promises||[]).length)return Promise.all(t._promises).then((function(){t._promises=[]}))},_.addLinks=function(t){if(t._context.showLink||t._context.showSources){var e=t._fullLayout,a=c.ensureSingle(e._paper,"text","js-plot-link-container",(function(t){t.style({"font-family":'"Open Sans", Arial, sans-serif',"font-size":"12px",fill:d.defaultLine,"pointer-events":"all"}).each((function(){var t=r.select(this);t.append("tspan").classed("js-link-to-tool",!0),t.append("tspan").classed("js-link-spacer",!0),t.append("tspan").classed("js-sourcelinks",!0)}))})),i=a.node(),n={y:e._paper.attr("height")-9};document.body.contains(i)&&i.getComputedTextLength()>=e.width-20?(n["text-anchor"]="start",n.x=5):(n["text-anchor"]="end",n.x=e._paper.attr("width")-7),a.attr(n);var o=a.select(".js-link-to-tool"),l=a.select(".js-link-spacer"),s=a.select(".js-sourcelinks");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text("");var a=e.append("a").attr({"xlink:xlink:href":"#",class:"link--impt link--embedview","font-weight":"bold"}).text(t._context.linkText+" "+String.fromCharCode(187));if(t._context.sendData)a.on("click",(function(){_.sendDataToCloud(t)}));else{var r=window.location.pathname.split("/"),i=window.location.search;a.attr({"xlink:xlink:show":"new","xlink:xlink:href":"/"+r[2].split(".")[0]+"/"+r[1]+i})}}(t,o),l.text(o.text()&&s.text()?" - ":"")}},_.sendDataToCloud=function(t){var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL;if(e){t.emit("plotly_beforeexport");var a=r.select(t).append("div").attr("id","hiddenform").style("display","none"),i=a.append("form").attr({action:e+"/external",method:"post",target:"_blank"});return i.append("input").attr({type:"text",name:"data"}).node().value=_.graphJson(t,!1,"keepdata"),i.node().submit(),a.remove(),t.emit("plotly_afterexport"),!1}};var w=["days","shortDays","months","shortMonths","periods","dateTime","date","time","decimal","thousands","grouping","currency"],M=["year","month","dayMonth","dayMonthYear"];function A(t,e){var a=t._context.locale;a||(a="en-US");var r=!1,i={};function n(t){for(var a=!0,n=0;n<e.length;n++){var o=e[n];i[o]||(t[o]?i[o]=t[o]:a=!1)}a&&(r=!0)}for(var o=0;o<2;o++){for(var s=t._context.locales,u=0;u<2;u++){var c=(s[a]||{}).format;if(c&&(n(c),r))break;s=l.localeRegistry}var d=a.split("-")[0];if(r||d===a)break;a=d}return r||n(l.localeRegistry.en.format),i}function D(t,e){var a={_fullLayout:e},r="x"===t._id.charAt(0),i=t._mainAxis._anchorAxis,n="",o="",l="";if(i&&(l=i._mainAxis._id,n=r?t._id+l:l+t._id),!n||!e._plots[n]){n="";for(var s=t._counterAxes,u=0;u<s.length;u++){var c=s[u],d=r?t._id+c:c+t._id;o||(o=d);var f=p.getFromId(a,c);if(l&&f.overlaying===l){n=d;break}}}return n||o}function T(t){var e=t.transforms;if(Array.isArray(e)&&e.length)for(var a=0;a<e.length;a++){var r=e[a],i=r._module||b[r.type];if(i&&i.makesData)return!0}return!1}function L(t,e,a,r){for(var i=t.transforms,n=[t],o=0;o<i.length;o++){var l=i[o],s=b[l.type];s&&s.transform&&(n=s.transform(n,{transform:l,fullTrace:t,fullData:e,layout:a,fullLayout:r,transformIndex:o}))}return n}function C(t){return"string"===typeof t&&"px"===t.substr(t.length-2)&&parseFloat(t)}function F(t){var e=t.margin;if(!t._size){var a=t._size={l:Math.round(e.l),r:Math.round(e.r),t:Math.round(e.t),b:Math.round(e.b),p:Math.round(e.pad)};a.w=Math.round(t.width)-a.l-a.r,a.h=Math.round(t.height)-a.t-a.b}t._pushmargin||(t._pushmargin={}),t._pushmarginIds||(t._pushmarginIds={})}_.supplyDefaults=function(t,e){var a=e&&e.skipUpdateCalc,r=t._fullLayout||{};if(r._skipDefaults)delete r._skipDefaults;else{var o,s=t._fullLayout={},u=t.layout||{},d=t._fullData||[],f=t._fullData=[],p=t.data||[],g=t.calcdata||[],m=t._context||{};t._transitionData||_.createTransitionData(t),s._dfltTitle={plot:x(t,"Click to enter Plot title"),x:x(t,"Click to enter X axis title"),y:x(t,"Click to enter Y axis title"),colorbar:x(t,"Click to enter Colorscale title"),annotation:x(t,"new text")},s._traceWord=x(t,"trace");var y=A(t,w);if(s._mapboxAccessToken=m.mapboxAccessToken,r._initialAutoSizeIsDone){var b=r.width,k=r.height;_.supplyLayoutGlobalDefaults(u,s,y),u.width||(s.width=b),u.height||(s.height=k),_.sanitizeMargins(s)}else{_.supplyLayoutGlobalDefaults(u,s,y);var D=!u.width||!u.height,T=s.autosize,L=m.autosizable;D&&(T||L)?_.plotAutoSize(t,u,s):D&&_.sanitizeMargins(s),!T&&D&&(u.width=s.width,u.height=s.height)}s._d3locale=function(t,e){return t.decimal=e.charAt(0),t.thousands=e.charAt(1),{numberFormat:function(e){try{e=n(t).format(c.adjustFormat(e))}catch(a){return c.warnBadFormat(e),c.noFormat}return e},timeFormat:i(t).utcFormat}}(y,s.separators),s._extraFormat=A(t,M),s._initialAutoSizeIsDone=!0,s._dataLength=p.length,s._modules=[],s._visibleModules=[],s._basePlotModules=[];var C=s._subplots=function(){var t,e,a=l.collectableSubplotTypes,r={};if(!a){a=[];var i=l.subplotsRegistry;for(var n in i){var o=i[n].attr;if(o&&(a.push(n),Array.isArray(o)))for(e=0;e<o.length;e++)c.pushUnique(a,o[e])}}for(t=0;t<a.length;t++)r[a[t]]=[];return r}(),I=s._splomAxes={x:{},y:{}},S=s._splomSubplots={};s._splomGridDflt={},s._scatterStackOpts={},s._firstScatter={},s._alignmentOpts={},s._colorAxes={},s._requestRangeslider={},s._traceUids=function(t,e){var a,r,i=e.length,n=[];for(a=0;a<t.length;a++){var o=t[a]._fullInput;o!==r&&n.push(o),r=o}var l=n.length,s=new Array(i),u={};function d(t,e){s[e]=t,u[t]=1}function f(t,e){if(t&&"string"===typeof t&&!u[t])return d(t,e),!0}for(a=0;a<i;a++){var p=e[a].uid;"number"===typeof p&&(p=String(p)),f(p,a)||(a<l&&f(n[a].uid,a)||d(c.randstr(u),a))}return s}(d,p),s._globalTransforms=(t._context||{}).globalTransforms,_.supplyDataDefaults(p,f,u,s);var P=Object.keys(I.x),O=Object.keys(I.y);if(P.length>1&&O.length>1){for(l.getComponentMethod("grid","sizeDefaults")(u,s),o=0;o<P.length;o++)c.pushUnique(C.xaxis,P[o]);for(o=0;o<O.length;o++)c.pushUnique(C.yaxis,O[o]);for(var z in S)c.pushUnique(C.cartesian,z)}if(s._has=_._hasPlotType.bind(s),d.length===f.length)for(o=0;o<f.length;o++)v(f[o],d[o]);_.supplyLayoutModuleDefaults(u,s,f,t._transitionData);var R=s._visibleModules,j=[];for(o=0;o<R.length;o++){var N=R[o].crossTraceDefaults;N&&c.pushUnique(j,N)}for(o=0;o<j.length;o++)j[o](f,s);s._hasOnlyLargeSploms=1===s._basePlotModules.length&&"splom"===s._basePlotModules[0].name&&P.length>15&&O.length>15&&0===s.shapes.length&&0===s.images.length,_.linkSubplots(f,s,d,r),_.cleanPlot(f,s,d,r);var U=!(!r._has||!r._has("gl2d")),B=!(!s._has||!s._has("gl2d")),G=!(!r._has||!r._has("cartesian"))||U,H=!(!s._has||!s._has("cartesian"))||B;G&&!H?r._bgLayer.remove():H&&!G&&(s._shouldCreateBgLayer=!0),r._zoomlayer&&!t._dragging&&h({_fullLayout:r}),function(t,e){var a,r=[];e.meta&&(a=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var i=0;i<t.length;i++){var n=t[i];n.meta?r[n.index]=n._meta={meta:n.meta}:e.meta&&(n._meta={meta:e.meta}),e.meta&&(n._meta.layout={meta:e.meta})}r.length&&(a||(a=e._meta={}),a.data=r)}(f,s),v(s,r),l.getComponentMethod("colorscale","crossTraceDefaults")(f,s),s._preGUI||(s._preGUI={}),s._tracePreGUI||(s._tracePreGUI={});var Z,q=s._tracePreGUI,E={};for(Z in q)E[Z]="old";for(o=0;o<f.length;o++)E[Z=f[o]._fullInput.uid]||(q[Z]={}),E[Z]="new";for(Z in E)"old"===E[Z]&&delete q[Z];F(s),l.getComponentMethod("rangeslider","makeData")(s),a||g.length!==f.length||_.supplyDefaultsUpdateCalc(g,f)}},_.supplyDefaultsUpdateCalc=function(t,e){for(var a=0;a<e.length;a++){var r=e[a],i=(t[a]||[])[0];if(i&&i.trace){var n=i.trace;if(n._hasCalcTransform){var o,l,s,u=n._arrayAttrs;for(o=0;o<u.length;o++)l=u[o],s=c.nestedProperty(n,l).get().slice(),c.nestedProperty(r,l).set(s)}i.trace=r}}},_.createTransitionData=function(t){t._transitionData||(t._transitionData={}),t._transitionData._frames||(t._transitionData._frames=[]),t._transitionData._frameHash||(t._transitionData._frameHash={}),t._transitionData._counter||(t._transitionData._counter=0),t._transitionData._interruptCallbacks||(t._transitionData._interruptCallbacks=[])},_._hasPlotType=function(t){var e,a=this._basePlotModules||[];for(e=0;e<a.length;e++)if(a[e].name===t)return!0;var r=this._modules||[];for(e=0;e<r.length;e++){var i=r[e].name;if(i===t)return!0;var n=l.modules[i];if(n&&n.categories[t])return!0}return!1},_.cleanPlot=function(t,e,a,r){var i,n,o=r._basePlotModules||[];for(i=0;i<o.length;i++){var l=o[i];l.clean&&l.clean(t,e,a,r)}var s=r._has&&r._has("gl"),u=e._has&&e._has("gl");s&&!u&&void 0!==r._glcontainer&&(r._glcontainer.selectAll(".gl-canvas").remove(),r._glcontainer.selectAll(".no-webgl").remove(),r._glcanvas=null);var c=!!r._infolayer;t:for(i=0;i<a.length;i++){var d=a[i].uid;for(n=0;n<t.length;n++){if(d===t[n].uid)continue t}c&&r._infolayer.select(".cb"+d).remove()}},_.linkSubplots=function(t,e,a,r){var i,n,o=r._plots||{},s=e._plots={},u=e._subplots,d={_fullData:t,_fullLayout:e},f=u.cartesian.concat(u.gl2d||[]);for(i=0;i<f.length;i++){var h,g=f[i],m=o[g],y=p.getFromId(d,g,"x"),v=p.getFromId(d,g,"y");for(m?h=s[g]=m:(h=s[g]={}).id=g,y._counterAxes.push(v._id),v._counterAxes.push(y._id),y._subplotsWith.push(g),v._subplotsWith.push(g),h.xaxis=y,h.yaxis=v,h._hasClipOnAxisFalse=!1,n=0;n<t.length;n++){var x=t[n];if(x.xaxis===h.xaxis._id&&x.yaxis===h.yaxis._id&&!1===x.cliponaxis){h._hasClipOnAxisFalse=!0;break}}}var _,b=p.list(d,null,!0);for(i=0;i<b.length;i++){var k=null;(_=b[i]).overlaying&&(k=p.getFromId(d,_.overlaying))&&k.overlaying&&(_.overlaying=!1,k=null),_._mainAxis=k||_,k&&(_.domain=k.domain.slice()),_._anchorAxis="free"===_.anchor?null:p.getFromId(d,_.anchor)}for(i=0;i<b.length;i++)if((_=b[i])._counterAxes.sort(p.idSort),_._subplotsWith.sort(c.subplotSort),_._mainSubplot=D(_,e),_._counterAxes.length&&(_.spikemode&&-1!==_.spikemode.indexOf("across")||_.automargin&&_.mirror&&"free"!==_.anchor||l.getComponentMethod("rangeslider","isVisible")(_))){var w=1,M=0;for(n=0;n<_._counterAxes.length;n++){var A=p.getFromId(d,_._counterAxes[n]);w=Math.min(w,A.domain[0]),M=Math.max(M,A.domain[1])}w<M&&(_._counterDomainMin=w,_._counterDomainMax=M)}},_.clearExpandedTraceDefaultColors=function(t){var e,a,r;for(a=[],(e=t._module._colorAttrs)||(t._module._colorAttrs=e=[],s.crawl(t._module.attributes,(function(t,r,i,n){a[n]=r,a.length=n+1,"color"===t.valType&&void 0===t.dflt&&e.push(a.join("."))}))),r=0;r<e.length;r++){c.nestedProperty(t,"_input."+e[r]).get()||c.nestedProperty(t,e[r]).set(null)}},_.supplyDataDefaults=function(t,e,a,r){var i,n,o,s=r._modules,d=r._visibleModules,f=r._basePlotModules,p=0,h=0;function g(t){e.push(t);var a=t._module;a&&(c.pushUnique(s,a),!0===t.visible&&c.pushUnique(d,a),c.pushUnique(f,t._module.basePlotModule),p++,!1!==t._input.visible&&h++)}r._transformModules=[];var m={},y=[],x=(a.template||{}).data||{},b=u.traceTemplater(x);for(i=0;i<t.length;i++){if(o=t[i],(n=b.newTrace(o)).uid=r._traceUids[i],_.supplyTraceDefaults(o,n,h,r,i),n.index=i,n._input=o,n._expandedIndex=p,n.transforms&&n.transforms.length)for(var k=!1!==o.visible&&!1===n.visible,w=L(n,e,a,r),M=0;M<w.length;M++){var A=w[M],D={_template:n._template,type:n.type,uid:n.uid+M};k&&!1===A.visible&&delete A.visible,_.supplyTraceDefaults(A,D,p,r,i),v(D,A),D.index=i,D._input=o,D._fullInput=n,D._expandedIndex=p,D._expandedInput=A,g(D)}else n._fullInput=n,n._expandedInput=n,g(n);l.traceIs(n,"carpetAxis")&&(m[n.carpet]=n),l.traceIs(n,"carpetDependent")&&y.push(i)}for(i=0;i<y.length;i++)if((n=e[y[i]]).visible){var T=m[n.carpet];n._carpet=T,T&&T.visible?(n.xaxis=T.xaxis,n.yaxis=T.yaxis):n.visible=!1}},_.supplyAnimationDefaults=function(t){var e;t=t||{};var a={};function r(e,r){return c.coerce(t||{},a,g,e,r)}if(r("mode"),r("direction"),r("fromcurrent"),Array.isArray(t.frame))for(a.frame=[],e=0;e<t.frame.length;e++)a.frame[e]=_.supplyAnimationFrameDefaults(t.frame[e]||{});else a.frame=_.supplyAnimationFrameDefaults(t.frame||{});if(Array.isArray(t.transition))for(a.transition=[],e=0;e<t.transition.length;e++)a.transition[e]=_.supplyAnimationTransitionDefaults(t.transition[e]||{});else a.transition=_.supplyAnimationTransitionDefaults(t.transition||{});return a},_.supplyAnimationFrameDefaults=function(t){var e={};function a(a,r){return c.coerce(t||{},e,g.frame,a,r)}return a("duration"),a("redraw"),e},_.supplyAnimationTransitionDefaults=function(t){var e={};function a(a,r){return c.coerce(t||{},e,g.transition,a,r)}return a("duration"),a("easing"),e},_.supplyFrameDefaults=function(t){var e={};function a(a,r){return c.coerce(t,e,m,a,r)}return a("group"),a("name"),a("traces"),a("baseframe"),a("data"),a("layout"),e},_.supplyTraceDefaults=function(t,e,a,r,i){var n,o=r.colorway||d.defaults,s=o[a%o.length];function u(a,r){return c.coerce(t,e,_.attributes,a,r)}var f=u("visible");u("type"),u("name",r._traceWord+" "+i),u("uirevision",r.uirevision);var p=_.getModule(e);if(e._module=p,p){var h=p.basePlotModule,g=h.attr,m=h.attributes;if(g&&m){var y=r._subplots,v="";if(f||"gl2d"!==h.name){if(Array.isArray(g))for(n=0;n<g.length;n++){var x=g[n],b=c.coerce(t,e,m,x);y[x]&&c.pushUnique(y[x],b),v+=b}else v=c.coerce(t,e,m,g);y[h.name]&&c.pushUnique(y[h.name],v)}}}if(f){if(u("customdata"),u("ids"),u("meta"),l.traceIs(e,"showLegend"))c.coerce(t,e,p.attributes.showlegend?p.attributes:_.attributes,"showlegend"),u("legendgroup"),u("legendgrouptitle.text")&&c.coerceFont(u,"legendgrouptitle.font",c.extendFlat({},r.font,{size:Math.round(1.1*r.font.size)})),u("legendrank"),e._dfltShowLegend=!0;else e._dfltShowLegend=!1;p&&p.supplyDefaults(t,e,s,r),l.traceIs(e,"noOpacity")||u("opacity"),l.traceIs(e,"notLegendIsolatable")&&(e.visible=!!e.visible),l.traceIs(e,"noHover")||(e.hovertemplate||c.coerceHoverinfo(t,e,r),"parcats"!==e.type&&l.getComponentMethod("fx","supplyDefaults")(t,e,s,r)),p&&p.selectPoints&&u("selectedpoints"),_.supplyTransformDefaults(t,e,r)}return e},_.hasMakesDataTransform=T,_.supplyTransformDefaults=function(t,e,a){if(e._length||T(t)){var r=a._globalTransforms||[],i=a._transformModules||[];if(Array.isArray(t.transforms)||0!==r.length)for(var n=t.transforms||[],o=r.concat(n),l=e.transforms=[],s=0;s<o.length;s++){var u,d=o[s],f=d.type,p=b[f],h=!(d._module&&d._module===p),g=p&&"function"===typeof p.transform;p||c.warn("Unrecognized transform type "+f+"."),p&&p.supplyDefaults&&(h||g)?((u=p.supplyDefaults(d,e,a,t)).type=f,u._module=p,c.pushUnique(i,p)):u=c.extendFlat({},d),l.push(u)}}},_.supplyLayoutGlobalDefaults=function(t,e,a){function r(a,r){return c.coerce(t,e,_.layoutAttributes,a,r)}var i=t.template;c.isPlainObject(i)&&(e.template=i,e._template=i.layout,e._dataTemplate=i.data),r("autotypenumbers");var n=c.coerceFont(r,"font");r("title.text",e._dfltTitle.plot),c.coerceFont(r,"title.font",{family:n.family,size:Math.round(1.4*n.size),color:n.color}),r("title.xref"),r("title.yref"),r("title.x"),r("title.y"),r("title.xanchor"),r("title.yanchor"),r("title.pad.t"),r("title.pad.r"),r("title.pad.b"),r("title.pad.l"),r("uniformtext.mode")&&r("uniformtext.minsize"),r("autosize",!(t.width&&t.height)),r("width"),r("height"),r("margin.l"),r("margin.r"),r("margin.t"),r("margin.b"),r("margin.pad"),r("margin.autoexpand"),t.width&&t.height&&_.sanitizeMargins(e),l.getComponentMethod("grid","sizeDefaults")(t,e),r("paper_bgcolor"),r("separators",a.decimal+a.thousands),r("hidesources"),r("colorway"),r("datarevision");var o=r("uirevision");r("editrevision",o),r("selectionrevision",o),l.getComponentMethod("modebar","supplyLayoutDefaults")(t,e),l.getComponentMethod("shapes","supplyDrawNewShapeDefaults")(t,e,r),r("meta"),c.isPlainObject(t.transition)&&(r("transition.duration"),r("transition.easing"),r("transition.ordering")),l.getComponentMethod("calendars","handleDefaults")(t,e,"calendar"),l.getComponentMethod("fx","supplyLayoutGlobalDefaults")(t,e,r)},_.plotAutoSize=function(t,e,a){var r,i,n=t._context||{},l=n.frameMargins,s=c.isPlotDiv(t);if(s&&t.emit("plotly_autosize"),n.fillFrame)r=window.innerWidth,i=window.innerHeight,document.body.style.overflow="hidden";else{var u=s?window.getComputedStyle(t):{};if(r=C(u.width)||C(u.maxWidth)||a.width,i=C(u.height)||C(u.maxHeight)||a.height,o(l)&&l>0){var d=1-2*l;r=Math.round(d*r),i=Math.round(d*i)}}var f=_.layoutAttributes.width.min,p=_.layoutAttributes.height.min;r<f&&(r=f),i<p&&(i=p);var h=!e.width&&Math.abs(a.width-r)>1,g=!e.height&&Math.abs(a.height-i)>1;(g||h)&&(h&&(a.width=r),g&&(a.height=i)),t._initialAutoSize||(t._initialAutoSize={width:r,height:i}),_.sanitizeMargins(a)},_.supplyLayoutModuleDefaults=function(t,e,a,r){var i,n,o,s=l.componentsRegistry,u=e._basePlotModules,d=l.subplotsRegistry.cartesian;for(i in s)(o=s[i]).includeBasePlot&&o.includeBasePlot(t,e);for(var f in u.length||u.push(d),e._has("cartesian")&&(l.getComponentMethod("grid","contentDefaults")(t,e),d.finalizeSubplots(t,e)),e._subplots)e._subplots[f].sort(c.subplotSort);for(n=0;n<u.length;n++)(o=u[n]).supplyLayoutDefaults&&o.supplyLayoutDefaults(t,e,a);var p=e._modules;for(n=0;n<p.length;n++)(o=p[n]).supplyLayoutDefaults&&o.supplyLayoutDefaults(t,e,a);var h=e._transformModules;for(n=0;n<h.length;n++)(o=h[n]).supplyLayoutDefaults&&o.supplyLayoutDefaults(t,e,a,r);for(i in s)(o=s[i]).supplyLayoutDefaults&&o.supplyLayoutDefaults(t,e,a)},_.purge=function(t){var e=t._fullLayout||{};void 0!==e._glcontainer&&(e._glcontainer.selectAll(".gl-canvas").remove(),e._glcontainer.remove(),e._glcanvas=null),e._modeBar&&e._modeBar.destroy(),t._transitionData&&(t._transitionData._interruptCallbacks&&(t._transitionData._interruptCallbacks.length=0),t._transitionData._animationRaf&&window.cancelAnimationFrame(t._transitionData._animationRaf)),c.clearThrottle(),c.clearResponsive(t),delete t.data,delete t.layout,delete t._fullData,delete t._fullLayout,delete t.calcdata,delete t.empty,delete t.fid,delete t.undoqueue,delete t.undonum,delete t.autoplay,delete t.changed,delete t._promises,delete t._redrawTimer,delete t._hmlumcount,delete t._hmpixcount,delete t._transitionData,delete t._transitioning,delete t._initialAutoSize,delete t._transitioningWithDuration,delete t._dragging,delete t._dragged,delete t._dragdata,delete t._hoverdata,delete t._snapshotInProgress,delete t._editing,delete t._mouseDownTime,delete t._legendMouseDownTime,t.removeAllListeners&&t.removeAllListeners()},_.style=function(t){var e,a=t._fullLayout._visibleModules,r=[];for(e=0;e<a.length;e++){var i=a[e];i.style&&c.pushUnique(r,i.style)}for(e=0;e<r.length;e++)r[e](t)},_.sanitizeMargins=function(t){if(t&&t.margin){var e,a=t.width,r=t.height,i=t.margin,n=a-(i.l+i.r),o=r-(i.t+i.b);n<0&&(e=(a-1)/(i.l+i.r),i.l=Math.floor(e*i.l),i.r=Math.floor(e*i.r)),o<0&&(e=(r-1)/(i.t+i.b),i.t=Math.floor(e*i.t),i.b=Math.floor(e*i.b))}},_.clearAutoMarginIds=function(t){t._fullLayout._pushmarginIds={}},_.allowAutoMargin=function(t,e){t._fullLayout._pushmarginIds[e]=1};_.autoMargin=function(t,e,a){var r=t._fullLayout,i=r.width,n=r.height,o=r.margin,l=c.constrain(i-o.l-o.r,2,64),s=c.constrain(n-o.t-o.b,2,64),u=Math.max(0,i-l),d=Math.max(0,n-s),f=r._pushmargin,p=r._pushmarginIds;if(!1!==o.autoexpand){if(a){var h=a.pad;if(void 0===h&&(h=Math.min(12,o.l,o.r,o.t,o.b)),u){var g=(a.l+a.r)/u;g>1&&(a.l/=g,a.r/=g)}if(d){var m=(a.t+a.b)/d;m>1&&(a.t/=m,a.b/=m)}var y=void 0!==a.xl?a.xl:a.x,v=void 0!==a.xr?a.xr:a.x,x=void 0!==a.yt?a.yt:a.y,b=void 0!==a.yb?a.yb:a.y;f[e]={l:{val:y,size:a.l+h},r:{val:v,size:a.r+h},b:{val:b,size:a.b+h},t:{val:x,size:a.t+h}},p[e]=1}else delete f[e],delete p[e];if(!r._replotting)return _.doAutoMargin(t)}},_.doAutoMargin=function(t){var e=t._fullLayout,a=e.width,r=e.height;e._size||(e._size={}),F(e);var i=e._size,n=e.margin,s=c.extendFlat({},i),u=n.l,d=n.r,f=n.t,h=n.b,g=e._pushmargin,m=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var y in g)m[y]||delete g[y];for(var v in g.base={l:{val:0,size:u},r:{val:1,size:d},t:{val:1,size:f},b:{val:0,size:h}},g){var x=g[v].l||{},b=g[v].b||{},k=x.val,w=x.size,M=b.val,A=b.size;for(var D in g){if(o(w)&&g[D].r){var T=g[D].r.val,L=g[D].r.size;if(T>k){var C=(w*T+(L-a)*k)/(T-k),I=(L*(1-k)+(w-a)*(1-T))/(T-k);C+I>u+d&&(u=C,d=I)}}if(o(A)&&g[D].t){var S=g[D].t.val,P=g[D].t.size;if(S>M){var O=(A*S+(P-r)*M)/(S-M),z=(P*(1-M)+(A-r)*(1-S))/(S-M);O+z>h+f&&(h=O,f=z)}}}}}var R=c.constrain(a-n.l-n.r,2,64),j=c.constrain(r-n.t-n.b,2,64),N=Math.max(0,a-R),U=Math.max(0,r-j);if(N){var B=(u+d)/N;B>1&&(u/=B,d/=B)}if(U){var G=(h+f)/U;G>1&&(h/=G,f/=G)}if(i.l=Math.round(u),i.r=Math.round(d),i.t=Math.round(f),i.b=Math.round(h),i.p=Math.round(n.pad),i.w=Math.round(a)-i.l-i.r,i.h=Math.round(r)-i.t-i.b,!e._replotting&&_.didMarginChange(s,i)){"_redrawFromAutoMarginCount"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var H=3*(1+Object.keys(m).length);if(e._redrawFromAutoMarginCount<H)return l.call("_doPlot",t);e._size=s,c.warn("Too many auto-margin redraws.")}!function(t){var e=p.list(t,"",!0);["_adjustTickLabelsOverflow","_hideCounterAxisInsideTickLabels"].forEach((function(t){for(var a=0;a<e.length;a++){var r=e[a][t];r&&r()}}))}(t)};var I=["l","r","t","b","p","w","h"];function S(t,e,a){var r=!1;var i=[_.previousPromises,function(){if(t._transitionData)return t._transitioning=!1,function(t){var e=Promise.resolve();if(!t)return e;for(;t.length;)e=e.then(t.shift());return e}(t._transitionData._interruptCallbacks)},a.prepareFn,_.rehover,function(){return t.emit("plotly_transitioning",[]),new Promise((function(i){t._transitioning=!0,e.duration>0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push((function(){r=!0})),a.redraw&&t._transitionData._interruptCallbacks.push((function(){return l.call("redraw",t)})),t._transitionData._interruptCallbacks.push((function(){t.emit("plotly_transitioninterrupted",[])}));var n=0,o=0;function s(){return n++,function(){o++,r||o!==n||function(e){if(!t._transitionData)return;(function(t){if(t)for(;t.length;)t.shift()})(t._transitionData._interruptCallbacks),Promise.resolve().then((function(){if(a.redraw)return l.call("redraw",t)})).then((function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit("plotly_transitioned",[])})).then(e)}(i)}}a.runFn(s),setTimeout(s())}))}],n=c.syncOrAsync(i,t);return n&&n.then||(n=Promise.resolve()),n.then((function(){return t}))}_.didMarginChange=function(t,e){for(var a=0;a<I.length;a++){var r=I[a],i=t[r],n=e[r];if(!o(i)||Math.abs(n-i)>1)return!0}return!1},_.graphJson=function(t,e,a,r,i,n){(i&&e&&!t._fullData||i&&!e&&!t._fullLayout)&&_.supplyDefaults(t);var o=i?t._fullData:t.data,l=i?t._fullLayout:t.layout,s=(t._transitionData||{})._frames;function u(t,e){if("function"===typeof t)return e?"_function_":null;if(c.isPlainObject(t)){var r,i={};return Object.keys(t).sort().forEach((function(n){if(-1===["_","["].indexOf(n.charAt(0)))if("function"!==typeof t[n]){if("keepdata"===a){if("src"===n.substr(n.length-3))return}else if("keepstream"===a){if("string"===typeof(r=t[n+"src"])&&r.indexOf(":")>0&&!c.isPlainObject(t.stream))return}else if("keepall"!==a&&"string"===typeof(r=t[n+"src"])&&r.indexOf(":")>0)return;i[n]=u(t[n],e)}else e&&(i[n]="_function")})),i}return Array.isArray(t)?t.map((function(t){return u(t,e)})):c.isTypedArray(t)?c.simpleMap(t,c.identity):c.isJSDate(t)?c.ms2DateTimeLocal(+t):t}var d={data:(o||[]).map((function(t){var a=u(t);return e&&delete a.fit,a}))};if(!e&&(d.layout=u(l),i)){var f=l._size;d.layout.computed={margin:{b:f.b,l:f.l,r:f.r,t:f.t}}}return s&&(d.frames=u(s)),n&&(d.config=u(t._context,!0)),"object"===r?d:JSON.stringify(d)},_.modifyFrames=function(t,e){var a,r,i,n=t._transitionData._frames,o=t._transitionData._frameHash;for(a=0;a<e.length;a++)switch((r=e[a]).type){case"replace":i=r.value;var l=(n[r.index]||{}).name,s=i.name;n[r.index]=o[s]=i,s!==l&&(delete o[l],o[s]=i);break;case"insert":o[(i=r.value).name]=i,n.splice(r.index,0,i);break;case"delete":delete o[(i=n[r.index]).name],n.splice(r.index,1)}return Promise.resolve()},_.computeFrame=function(t,e){var a,r,i,n,o=t._transitionData._frameHash;if(!e)throw new Error("computeFrame must be given a string frame name");var l=o[e.toString()];if(!l)return!1;for(var s=[l],u=[l.name];l.baseframe&&(l=o[l.baseframe.toString()])&&-1===u.indexOf(l.name);)s.push(l),u.push(l.name);for(var c={};l=s.pop();)if(l.layout&&(c.layout=_.extendLayout(c.layout,l.layout)),l.data){if(c.data||(c.data=[]),!(r=l.traces))for(r=[],a=0;a<l.data.length;a++)r[a]=a;for(c.traces||(c.traces=[]),a=0;a<l.data.length;a++)void 0!==(i=r[a])&&null!==i&&(-1===(n=c.traces.indexOf(i))&&(n=c.data.length,c.traces[n]=i),c.data[n]=_.extendTrace(c.data[n],l.data[a]))}return c},_.recomputeFrameHash=function(t){for(var e=t._transitionData._frameHash={},a=t._transitionData._frames,r=0;r<a.length;r++){var i=a[r];i&&i.name&&(e[i.name]=i)}},_.extendObjectWithContainers=function(t,e,a){var r,i,n,o,l,s,u,d=c.extendDeepNoArrays({},e||{}),f=c.expandObjectPaths(d),p={};if(a&&a.length)for(n=0;n<a.length;n++)void 0===(i=(r=c.nestedProperty(f,a[n])).get())?c.nestedProperty(p,a[n]).set(null):(r.set(null),c.nestedProperty(p,a[n]).set(i));if(t=c.extendDeepNoArrays(t||{},f),a&&a.length)for(n=0;n<a.length;n++)if(s=c.nestedProperty(p,a[n]).get()){for(u=(l=c.nestedProperty(t,a[n])).get(),Array.isArray(u)||(u=[],l.set(u)),o=0;o<s.length;o++){var h=s[o];u[o]=null===h?null:_.extendObjectWithContainers(u[o],h)}l.set(u)}return t},_.dataArrayContainers=["transforms","dimensions"],_.layoutArrayContainers=l.layoutArrayContainers,_.extendTrace=function(t,e){return _.extendObjectWithContainers(t,e,_.dataArrayContainers)},_.extendLayout=function(t,e){return _.extendObjectWithContainers(t,e,_.layoutArrayContainers)},_.transition=function(t,e,a,r,i,n){var o={redraw:i.redraw},l={},s=[];return o.prepareFn=function(){for(var i=Array.isArray(e)?e.length:0,n=r.slice(0,i),o=0;o<n.length;o++){var u=n[o],d=t._fullData[u]._module;if(d){if(d.animatable){var f=d.basePlotModule.name;l[f]||(l[f]=[]),l[f].push(u)}t.data[n[o]]=_.extendTrace(t.data[n[o]],e[o])}}var p=c.expandObjectPaths(c.extendDeepNoArrays({},a)),h=/^[xy]axis[0-9]*$/;for(var g in p)h.test(g)&&delete p[g].range;_.extendLayout(t.layout,p),delete t.calcdata,_.supplyDefaults(t),_.doCalcdata(t);var m=c.expandObjectPaths(a);if(m){var y=t._fullLayout._plots;for(var v in y){var x=y[v],b=x.xaxis,k=x.yaxis,w=b.range.slice(),M=k.range.slice(),A=null,D=null,T=null,L=null;Array.isArray(m[b._name+".range"])?A=m[b._name+".range"].slice():Array.isArray((m[b._name]||{}).range)&&(A=m[b._name].range.slice()),Array.isArray(m[k._name+".range"])?D=m[k._name+".range"].slice():Array.isArray((m[k._name]||{}).range)&&(D=m[k._name].range.slice()),w&&A&&(b.r2l(w[0])!==b.r2l(A[0])||b.r2l(w[1])!==b.r2l(A[1]))&&(T={xr0:w,xr1:A}),M&&D&&(k.r2l(M[0])!==k.r2l(D[0])||k.r2l(M[1])!==k.r2l(D[1]))&&(L={yr0:M,yr1:D}),(T||L)&&s.push(c.extendFlat({plotinfo:x},T,L))}}return Promise.resolve()},o.runFn=function(e){var r,i,o=t._fullLayout._basePlotModules,u=s.length;if(a)for(i=0;i<o.length;i++)o[i].transitionAxes&&o[i].transitionAxes(t,s,n,e);for(var d in u?((r=c.extendFlat({},n)).duration=0,delete l.cartesian):r=n,l){var f=l[d];t._fullData[f[0]]._module.basePlotModule.plot(t,f,r,e)}},S(t,n,o)},_.transitionFromReact=function(t,e,a,r){var i=t._fullLayout,n=i.transition,o={},l=[];return o.prepareFn=function(){var t=i._plots;for(var n in o.redraw=!1,"some"===e.anim&&(o.redraw=!0),"some"===a.anim&&(o.redraw=!0),t){var s=t[n],u=s.xaxis,d=s.yaxis,f=r[u._name].range.slice(),p=r[d._name].range.slice(),h=u.range.slice(),g=d.range.slice();u.setScale(),d.setScale();var m=null,y=null;u.r2l(f[0])===u.r2l(h[0])&&u.r2l(f[1])===u.r2l(h[1])||(m={xr0:f,xr1:h}),d.r2l(p[0])===d.r2l(g[0])&&d.r2l(p[1])===d.r2l(g[1])||(y={yr0:p,yr1:g}),(m||y)&&l.push(c.extendFlat({plotinfo:s},m,y))}return Promise.resolve()},o.runFn=function(a){for(var r,i,o,s=t._fullData,u=t._fullLayout._basePlotModules,d=[],f=0;f<s.length;f++)d.push(f);function p(){if(t._fullLayout)for(var e=0;e<u.length;e++)u[e].transitionAxes&&u[e].transitionAxes(t,l,r,a)}function h(){if(t._fullLayout)for(var e=0;e<u.length;e++)u[e].plot(t,o,i,a)}l.length&&e.anim?"traces first"===n.ordering?(r=c.extendFlat({},n,{duration:0}),o=d,i=n,setTimeout(p,n.duration),h()):(r=n,o=null,i=c.extendFlat({},n,{duration:0}),setTimeout(h,r.duration),p()):l.length?(r=n,p()):e.anim&&(o=d,i=n,h())},S(t,n,o)},_.doCalcdata=function(t,e){var a,r,i,n,o=p.list(t),u=t._fullData,d=t._fullLayout,h=new Array(u.length),g=(t.calcdata||[]).slice();for(t.calcdata=h,d._numBoxes=0,d._numViolins=0,d._violinScaleGroupStats={},t._hmpixcount=0,t._hmlumcount=0,d._piecolormap={},d._sunburstcolormap={},d._treemapcolormap={},d._iciclecolormap={},d._funnelareacolormap={},i=0;i<u.length;i++)Array.isArray(e)&&-1===e.indexOf(i)&&(h[i]=g[i]);for(i=0;i<u.length;i++)(a=u[i])._arrayAttrs=s.findArrayAttributes(a),a._extremes={};var m=d._subplots.polar||[];for(i=0;i<m.length;i++)o.push(d[m[i]].radialaxis,d[m[i]].angularaxis);for(var y in d._colorAxes){var v=d[y];!1!==v.cauto&&(delete v.cmin,delete v.cmax)}var x=!1;function _(e){if(a=u[e],r=a._module,!0===a.visible&&a.transforms){if(r&&r.calc){var i=r.calc(t,a);i[0]&&i[0].t&&i[0].t._scene&&delete i[0].t._scene.dirty}for(n=0;n<a.transforms.length;n++){var o=a.transforms[n];(r=b[o.type])&&r.calcTransform&&(a._hasCalcTransform=!0,x=!0,r.calcTransform(t,a,o))}}}function k(e,i){if(a=u[e],!!(r=a._module).isContainer===i){var o=[];if(!0===a.visible&&0!==a._length){delete a._indexToPoints;var l=a.transforms||[];for(n=l.length-1;n>=0;n--)if(l[n].enabled){a._indexToPoints=l[n]._indexToPoints;break}r&&r.calc&&(o=r.calc(t,a))}Array.isArray(o)&&o[0]||(o=[{x:f,y:f}]),o[0].t||(o[0].t={}),o[0].trace=a,h[e]=o}}for(O(o,u,d),i=0;i<u.length;i++)k(i,!0);for(i=0;i<u.length;i++)_(i);for(x&&O(o,u,d),i=0;i<u.length;i++)k(i,!0);for(i=0;i<u.length;i++)k(i,!1);z(t);var w=function(t,e){var a,r,i,n,o,s=[];function u(t,a,r){var i=a._id.charAt(0);if("histogram2dcontour"===t){var n=a._counterAxes[0],o=p.getFromId(e,n),l="x"===i||"x"===n&&"category"===o.type,s="y"===i||"y"===n&&"category"===o.type;return function(t,e){return 0===t||0===e||l&&t===r[e].length-1||s&&e===r.length-1?-1:("y"===i?e:t)-1}}return function(t,e){return"y"===i?e:t}}var d={min:function(t){return c.aggNums(Math.min,null,t)},max:function(t){return c.aggNums(Math.max,null,t)},sum:function(t){return c.aggNums((function(t,e){return t+e}),null,t)},total:function(t){return c.aggNums((function(t,e){return t+e}),null,t)},mean:function(t){return c.mean(t)},median:function(t){return c.median(t)}};for(a=0;a<t.length;a++){var f=t[a];if("category"===f.type){var h=f.categoryorder.match(P);if(h){var g=h[1],m=h[2],y=f._id.charAt(0),v="x"===y,x=[];for(r=0;r<f._categories.length;r++)x.push([f._categories[r],[]]);for(r=0;r<f._traceIndices.length;r++){var _=f._traceIndices[r],b=e._fullData[_];if(!0===b.visible){var k=b.type;l.traceIs(b,"histogram")&&(delete b._xautoBinFinished,delete b._yautoBinFinished);var w="splom"===k,M="scattergl"===k,A=e.calcdata[_];for(i=0;i<A.length;i++){var D,T,L=A[i];if(w){var C=b._axesDim[f._id];if(!v){var F=b._diag[C][0];F&&(f=e._fullLayout[p.id2name(F)])}var I=L.trace.dimensions[C].values;for(n=0;n<I.length;n++)for(D=f._categoriesMap[I[n]],o=0;o<L.trace.dimensions.length;o++)if(o!==C){var S=L.trace.dimensions[o];x[D][1].push(S.values[n])}}else if(M){for(n=0;n<L.t.x.length;n++)v?(D=L.t.x[n],T=L.t.y[n]):(D=L.t.y[n],T=L.t.x[n]),x[D][1].push(T);L.t&&L.t._scene&&delete L.t._scene.dirty}else if(L.hasOwnProperty("z")){T=L.z;var O=u(b.type,f,T);for(n=0;n<T.length;n++)for(o=0;o<T[n].length;o++)(D=O(o,n))+1&&x[D][1].push(T[n][o])}else for(void 0===(D=L.p)&&(D=L[y]),void 0===(T=L.s)&&(T=L.v),void 0===T&&(T=v?L.y:L.x),Array.isArray(T)||(T=void 0===T?[]:[T]),n=0;n<T.length;n++)x[D][1].push(T[n])}}}f._categoriesValue=x;var z=[];for(r=0;r<x.length;r++)z.push([x[r][0],d[g](x[r][1])]);z.sort((function(t,e){return t[1]-e[1]})),f._categoriesAggregatedValue=z,f._initialCategories=z.map((function(t){return t[0]})),"descending"===m&&f._initialCategories.reverse(),s=s.concat(f.sortByInitialCategories())}}}return s}(o,t);if(w.length){for(d._numBoxes=0,d._numViolins=0,i=0;i<w.length;i++)k(w[i],!0);for(i=0;i<w.length;i++)k(w[i],!1);z(t)}l.getComponentMethod("fx","calc")(t),l.getComponentMethod("errorbars","calc")(t)};var P=/(total|sum|min|max|mean|median) (ascending|descending)/;function O(t,e,a){var r={};function i(t){t.clearCalc(),"multicategory"===t.type&&t.setupMultiCategory(e),r[t._id]=1}c.simpleMap(t,i);for(var n=a._axisMatchGroups||[],o=0;o<n.length;o++)for(var l in n[o])r[l]||i(a[p.id2name(l)])}function z(t){var e,a,r,i=t._fullLayout,n=i._visibleModules,o={};for(a=0;a<n.length;a++){var l=n[a],s=l.crossTraceCalc;if(s){var u=l.basePlotModule.name;o[u]?c.pushUnique(o[u],s):o[u]=[s]}}for(r in o){var d=o[r],f=i._subplots[r];if(Array.isArray(f))for(e=0;e<f.length;e++){var p=f[e],h="cartesian"===r?i._plots[p]:i[p];for(a=0;a<d.length;a++)d[a](t,h,p)}else for(a=0;a<d.length;a++)d[a](t)}}_.rehover=function(t){t._fullLayout._rehover&&t._fullLayout._rehover()},_.redrag=function(t){t._fullLayout._redrag&&t._fullLayout._redrag()},_.generalUpdatePerTraceModule=function(t,e,a,r){var i,n=e.traceHash,o={};for(i=0;i<a.length;i++){var l=a[i],s=l[0].trace;s.visible&&(o[s.type]=o[s.type]||[],o[s.type].push(l))}for(var u in n)if(!o[u]){var d=n[u][0];d[0].trace.visible=!1,o[u]=[d]}for(var f in o){var p=o[f];p[0][0].trace._module.plot(t,e,c.filterVisible(p),r)}e.traceHash=o},_.plotBasePlot=function(t,e,a,r,i){var n=l.getModule(t),o=y(e.calcdata,n)[0];n.plot(e,o,r,i)},_.cleanBasePlot=function(t,e,a,r,i){var n=i._has&&i._has(t),o=a._has&&a._has(t);n&&!o&&i["_"+t+"layer"].selectAll("g.trace").remove()}},7908:function(t){t.exports={attr:"subplot",name:"polar",axisNames:["angularaxis","radialaxis"],axisName2dataArray:{angularaxis:"theta",radialaxis:"r"},layerNames:["draglayer","plotbg","backplot","angular-grid","radial-grid","frontplot","angular-line","radial-line","angular-axis","radial-axis"],radialDragBoxSize:50,angularDragBoxSize:30,cornerLen:25,cornerHalfWidth:2,MINDRAG:8,MINZOOM:20,OFFEDGE:20}},73608:function(t,e,a){var r=a(47401),i=a(78899).tester,n=r.findIndexOfMin,o=r.isAngleInsideSector,l=r.angleDelta,s=r.angleDist;function u(t,e,a,r){var i,n,o=r[0],l=r[1],s=d(Math.sin(e)-Math.sin(t)),u=d(Math.cos(e)-Math.cos(t)),c=Math.tan(a),f=d(1/c),p=s/u,h=l-p*o;return f?s&&u?n=c*(i=h/(c-p)):u?(i=l*f,n=l):(i=o,n=o*c):s&&u?(i=0,n=h):u?(i=0,n=l):i=n=NaN,[i,n]}function c(t,e,a,i){return r.isFullCircle([e,a])?function(t,e){var a,r=e.length,i=new Array(r+1);for(a=0;a<r;a++){var n=e[a];i[a]=[t*Math.cos(n),t*Math.sin(n)]}return i[a]=i[0].slice(),i}(t,i):function(t,e,a,i){var l,c,d=i.length,f=[];function p(e){return[t*Math.cos(e),t*Math.sin(e)]}function h(t,e,a){return u(t,e,a,p(t))}function g(t){return r.mod(t,d)}function m(t){return o(t,[e,a])}var y=n(i,(function(t){return m(t)?s(t,e):1/0})),v=h(i[y],i[g(y-1)],e);for(f.push(v),l=y,c=0;c<d;l++,c++){var x=i[g(l)];if(!m(x))break;f.push(p(x))}var _=n(i,(function(t){return m(t)?s(t,a):1/0})),b=h(i[_],i[g(_+1)],a);return f.push(b),f.push([0,0]),f.push(f[0].slice()),f}(t,e,a,i)}function d(t){return Math.abs(t)>1e-10?t:0}function f(t,e,a){e=e||0,a=a||0;for(var r=t.length,i=new Array(r),n=0;n<r;n++){var o=t[n];i[n]=[e+o[0],a-o[1]]}return i}t.exports={isPtInsidePolygon:function(t,e,a,r,n){if(!o(e,r))return!1;var l,s;a[0]<a[1]?(l=a[0],s=a[1]):(l=a[1],s=a[0]);var u=i(c(l,r[0],r[1],n)),d=i(c(s,r[0],r[1],n)),f=[t*Math.cos(e),t*Math.sin(e)];return d.contains(f)&&!u.contains(f)},findPolygonOffset:function(t,e,a,r){for(var i=1/0,n=1/0,o=c(t,e,a,r),l=0;l<o.length;l++){var s=o[l];i=Math.min(i,s[0]),n=Math.min(n,-s[1])}return[i,n]},findEnclosingVertexAngles:function(t,e){var a=n(e,(function(e){var a=l(e,t);return a>0?a:1/0})),i=r.mod(a+1,e.length);return[e[a],e[i]]},findIntersectionXY:u,findXYatLength:function(t,e,a,r){var i=-e*a,n=e*e+1,o=2*(e*i-a),l=i*i+a*a-t*t,s=Math.sqrt(o*o-4*n*l),u=(-o+s)/(2*n),c=(-o-s)/(2*n);return[[u,e*u+i+r],[c,e*c+i+r]]},clampTiny:d,pathPolygon:function(t,e,a,r,i,n){return"M"+f(c(t,e,a,r),i,n).join("L")},pathPolygonAnnulus:function(t,e,a,r,i,n,o){var l,s;t<e?(l=t,s=e):(l=e,s=t);var u=f(c(l,a,r,i),n,o);return"M"+f(c(s,a,r,i),n,o).reverse().join("L")+"M"+u.join("L")}}},70029:function(t,e,a){var r=a(13373).fX,i=a(47401).counterRegex,n=a(35193),o=a(7908),l=o.attr,s=o.name,u=i(s),c={};c[l]={valType:"subplotid",dflt:s,editType:"calc",description:["Sets a reference between this trace's data coordinates and","a polar subplot.","If *polar* (the default value), the data refer to `layout.polar`.","If *polar2*, the data refer to `layout.polar2`, and so on."].join(" ")},t.exports={attr:l,name:s,idRoot:s,idRegex:u,attrRegex:u,attributes:c,layoutAttributes:a(98363),supplyLayoutDefaults:a(41564),plot:function(t){for(var e=t._fullLayout,a=t.calcdata,i=e._subplots[s],o=0;o<i.length;o++){var l=i[o],u=r(a,s,l),c=e[l]._subplot;c||(c=n(t,l),e[l]._subplot=c),c.plot(u,e,t._promises)}},clean:function(t,e,a,r){for(var i=r._subplots[s]||[],n=r._has&&r._has("gl"),o=e._has&&e._has("gl"),l=n&&!o,u=0;u<i.length;u++){var c=i[u],d=r[c]._subplot;if(!e[c]&&d)for(var f in d.framework.remove(),d.layers["radial-axis-title"].remove(),d.clipPaths)d.clipPaths[f].remove();l&&d._scene&&(d._scene.destroy(),d._scene=null)}},toSVG:a(66807).toSVG}},98363:function(t,e,a){var r=a(62405),i=a(33333),n=a(16688).u,o=a(47401).extendFlat,l=a(17342).overrideAll,s=l({color:i.color,showline:o({},i.showline,{dflt:!0}),linecolor:i.linecolor,linewidth:i.linewidth,showgrid:o({},i.showgrid,{dflt:!0}),gridcolor:i.gridcolor,gridwidth:i.gridwidth},"plot","from-root"),u=l({tickmode:i.tickmode,nticks:i.nticks,tick0:i.tick0,dtick:i.dtick,tickvals:i.tickvals,ticktext:i.ticktext,ticks:i.ticks,ticklen:i.ticklen,tickwidth:i.tickwidth,tickcolor:i.tickcolor,showticklabels:i.showticklabels,showtickprefix:i.showtickprefix,tickprefix:i.tickprefix,showticksuffix:i.showticksuffix,ticksuffix:i.ticksuffix,showexponent:i.showexponent,exponentformat:i.exponentformat,minexponent:i.minexponent,separatethousands:i.separatethousands,tickfont:i.tickfont,tickangle:i.tickangle,tickformat:i.tickformat,tickformatstops:i.tickformatstops,layer:i.layer},"plot","from-root"),c={visible:o({},i.visible,{dflt:!0}),type:o({},i.type,{values:["-","linear","log","date","category"]}),autotypenumbers:i.autotypenumbers,autorange:o({},i.autorange,{editType:"plot"}),rangemode:{valType:"enumerated",values:["tozero","nonnegative","normal"],dflt:"tozero",editType:"calc",description:["If *tozero*`, the range extends to 0,","regardless of the input data","If *nonnegative*, the range is non-negative,","regardless of the input data.","If *normal*, the range is computed in relation to the extrema","of the input data (same behavior as for cartesian axes)."].join(" ")},range:o({},i.range,{items:[{valType:"any",editType:"plot",impliedEdits:{"^autorange":!1}},{valType:"any",editType:"plot",impliedEdits:{"^autorange":!1}}],editType:"plot"}),categoryorder:i.categoryorder,categoryarray:i.categoryarray,angle:{valType:"angle",editType:"plot",description:["Sets the angle (in degrees) from which the radial axis is drawn.","Note that by default, radial axis line on the theta=0 line","corresponds to a line pointing right (like what mathematicians prefer).","Defaults to the first `polar.sector` angle."].join(" ")},side:{valType:"enumerated",values:["clockwise","counterclockwise"],dflt:"clockwise",editType:"plot",description:["Determines on which side of radial axis line","the tick and tick labels appear."].join(" ")},title:{text:o({},i.title.text,{editType:"plot",dflt:""}),font:o({},i.title.font,{editType:"plot"}),editType:"plot"},hoverformat:i.hoverformat,uirevision:{valType:"any",editType:"none",description:["Controls persistence of user-driven changes in axis `range`,","`autorange`, `angle`, and `title` if in `editable: true` configuration.","Defaults to `polar<N>.uirevision`."].join(" ")},editType:"calc",_deprecated:{title:i._deprecated.title,titlefont:i._deprecated.titlefont}};o(c,s,u);var d={visible:o({},i.visible,{dflt:!0}),type:{valType:"enumerated",values:["-","linear","category"],dflt:"-",editType:"calc",_noTemplating:!0,description:["Sets the angular axis type.","If *linear*, set `thetaunit` to determine the unit in which axis value are shown.","If *category, use `period` to set the number of integer coordinates around polar axis."].join(" ")},autotypenumbers:i.autotypenumbers,categoryorder:i.categoryorder,categoryarray:i.categoryarray,thetaunit:{valType:"enumerated",values:["radians","degrees"],dflt:"degrees",editType:"calc",description:["Sets the format unit of the formatted *theta* values.","Has an effect only when `angularaxis.type` is *linear*."].join(" ")},period:{valType:"number",editType:"calc",min:0,description:["Set the angular period.","Has an effect only when `angularaxis.type` is *category*."].join(" ")},direction:{valType:"enumerated",values:["counterclockwise","clockwise"],dflt:"counterclockwise",editType:"calc",description:["Sets the direction corresponding to positive angles."].join(" ")},rotation:{valType:"angle",editType:"calc",description:["Sets that start position (in degrees) of the angular axis","By default, polar subplots with `direction` set to *counterclockwise*","get a `rotation` of *0*","which corresponds to due East (like what mathematicians prefer).","In turn, polar with `direction` set to *clockwise* get a rotation of *90*","which corresponds to due North (like on a compass),"].join(" ")},hoverformat:i.hoverformat,uirevision:{valType:"any",editType:"none",description:["Controls persistence of user-driven changes in axis `rotation`.","Defaults to `polar<N>.uirevision`."].join(" ")},editType:"calc"};o(d,s,u),t.exports={domain:n({name:"polar",editType:"plot"}),sector:{valType:"info_array",items:[{valType:"number",editType:"plot"},{valType:"number",editType:"plot"}],dflt:[0,360],editType:"plot",description:["Sets angular span of this polar subplot with two angles (in degrees).","Sector are assumed to be spanned in the counterclockwise direction","with *0* corresponding to rightmost limit of the polar subplot."].join(" ")},hole:{valType:"number",min:0,max:1,dflt:0,editType:"plot",description:["Sets the fraction of the radius to cut out of the polar subplot."].join(" ")},bgcolor:{valType:"color",editType:"plot",dflt:r.background,description:"Set the background color of the subplot"},radialaxis:c,angularaxis:d,gridshape:{valType:"enumerated",values:["circular","linear"],dflt:"circular",editType:"plot",description:["Determines if the radial axis grid lines and angular axis line are drawn","as *circular* sectors or as *linear* (polygon) sectors.","Has an effect only when the angular axis has `type` *category*.","Note that `radialaxis.angle` is snapped to the angle of the closest","vertex when `gridshape` is *circular*","(so that radial axis scale is the same as the data scale)."].join(" ")},uirevision:{valType:"any",editType:"none",description:["Controls persistence of user-driven changes in axis attributes,","if not overridden in the individual axes.","Defaults to `layout.uirevision`."].join(" ")},editType:"calc"}},41564:function(t,e,a){var r=a(47401),i=a(31454),n=a(92704),o=a(20112),l=a(13373).KO,s=a(37801),u=a(49593),c=a(51860),d=a(91289),f=a(28205),p=a(60210),h=a(98363),g=a(48113),m=a(7908),y=m.axisNames;function v(t,e,a,o){var p=a("bgcolor");o.bgColor=i.combine(p,o.paper_bgcolor);var v=a("sector");a("hole");var _,b=l(o.fullData,m.name,o.id),k=o.layoutOut;function w(t,e){return a(_+"."+t,e)}for(var M=0;M<y.length;M++){_=y[M],r.isPlainObject(t[_])||(t[_]={});var A=t[_],D=n.newContainer(e,_);D._id=D._name=_,D._attr=o.id+"."+_,D._traceIndices=b.map((function(t){return t._expandedIndex}));var T=m.axisName2dataArray[_],L=x(A,D,w,b,T,o);d(A,D,w,{axData:b,dataAttr:T});var C,F,I=w("visible");switch(g(D,e,k),w("uirevision",e.uirevision),I&&(F=(C=w("color"))===A.color?C:o.font.color),D._m=1,_){case"radialaxis":var S=w("autorange",!D.isValidRange(A.range));A.autorange=S,!S||"linear"!==L&&"-"!==L||w("rangemode"),"reversed"===S&&(D._m=-1),w("range"),D.cleanRange("range",{dfltRange:[0,1]}),I&&(w("side"),w("angle",v[0]),w("title.text"),r.coerceFont(w,"title.font",{family:o.font.family,size:r.bigFont(o.font.size),color:F}));break;case"angularaxis":if("date"===L){r.log("Polar plots do not support date angular axes yet.");for(var P=0;P<b.length;P++)b[P].visible=!1;L=A.type=D.type="linear"}w("linear"===L?"thetaunit":"period");var O=w("direction");w("rotation",{counterclockwise:0,clockwise:90}[O])}if(I)s(A,D,w,D.type),c(A,D,w,D.type,{tickSuffixDflt:"degrees"===D.thetaunit?"\xb0":void 0}),u(A,D,w,{outerTicks:!0}),w("showticklabels")&&(r.coerceFont(w,"tickfont",{family:o.font.family,size:o.font.size,color:F}),w("tickangle"),w("tickformat")),f(A,D,w,{dfltColor:C,bgColor:o.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:h[_]}),w("layer");"category"!==L&&w("hoverformat"),D._input=A}"category"===e.angularaxis.type&&a("gridshape")}function x(t,e,a,r,i,n){var o=a("autotypenumbers",n.autotypenumbersDflt);if("-"===a("type")){for(var l,s=0;s<r.length;s++)if(r[s].visible){l=r[s];break}l&&l[i]&&(e.type=p(l[i],"gregorian",{noMultiCategory:!0,autotypenumbers:o})),"-"===e.type?e.type="linear":t.type=e.type}return e.type}t.exports=function(t,e,a){o(t,e,a,{type:m.name,attributes:h,handleDefaults:v,font:e.font,autotypenumbersDflt:e.autotypenumbers,paper_bgcolor:e.paper_bgcolor,fullData:a,layoutOut:e})}},35193:function(t,e,a){var r=a(62258),i=a(91771),n=a(62282),o=a(47401),l=o.strRotate,s=o.strTranslate,u=a(31454),c=a(41707),d=a(35722),f=a(37762),p=a(58947),h=a(48113),g=a(9319).doAutoRange,m=a(15696),y=a(52783),v=a(21661),x=a(50075),_=a(88987).prepSelect,b=a(88987).selectOnClick,k=a(88987).clearSelect,w=a(82559),M=a(43351),A=a(665).redrawReglTraces,D=a(60482).MID_SHIFT,T=a(7908),L=a(73608),C=o._,F=o.mod,I=o.deg2rad,S=o.rad2deg;function P(t,e){this.id=e,this.gd=t,this._hasClipOnAxisFalse=null,this.vangles=null,this.radialAxisAngle=null,this.traceHash={},this.layers={},this.clipPaths={},this.clipIds={},this.viewInitial={};var a=t._fullLayout,r="clip"+a._uid+e;this.clipIds.forTraces=r+"-for-traces",this.clipPaths.forTraces=a._clips.append("clipPath").attr("id",this.clipIds.forTraces),this.clipPaths.forTraces.append("path"),this.framework=a._polarlayer.append("g").attr("class",e),this.radialTickLayout=null,this.angularTickLayout=null}var O=P.prototype;function z(t){var e=t.ticks+String(t.ticklen)+String(t.showticklabels);return"side"in t&&(e+=t.side),e}function R(t,e){return e[o.findIndexOfMin(e,(function(e){return o.angleDist(t,e)}))]}function j(t,e,a){return e?(t.attr("display",null),t.attr(a)):t&&t.attr("display","none"),t}t.exports=function(t,e){return new P(t,e)},O.plot=function(t,e){var a=this,r=e[a.id];a._hasClipOnAxisFalse=!1;for(var i=0;i<t.length;i++){if(!1===t[i][0].trace.cliponaxis){a._hasClipOnAxisFalse=!0;break}}a.updateLayers(e,r),a.updateLayout(e,r),d.generalUpdatePerTraceModule(a.gd,a,t,r),a.updateFx(e,r)},O.updateLayers=function(t,e){var a=this.layers,i=e.radialaxis,n=e.angularaxis,o=T.layerNames,l=o.indexOf("frontplot"),s=o.slice(0,l),u="below traces"===n.layer,c="below traces"===i.layer;u&&s.push("angular-line"),c&&s.push("radial-line"),u&&s.push("angular-axis"),c&&s.push("radial-axis"),s.push("frontplot"),u||s.push("angular-line"),c||s.push("radial-line"),u||s.push("angular-axis"),c||s.push("radial-axis");var d=this.framework.selectAll(".polarsublayer").data(s,String);d.enter().append("g").attr("class",(function(t){return"polarsublayer "+t})).each((function(t){var e=a[t]=r.select(this);switch(t){case"frontplot":e.append("g").classed("barlayer",!0),e.append("g").classed("scatterlayer",!0);break;case"backplot":e.append("g").classed("maplayer",!0);break;case"plotbg":a.bg=e.append("path");break;case"radial-grid":case"angular-grid":e.style("fill","none");break;case"radial-line":e.append("line").style("fill","none");break;case"angular-line":e.append("path").style("fill","none")}})),d.order()},O.updateLayout=function(t,e){var a=this,r=a.layers,i=t._size,n=e.radialaxis,o=e.angularaxis,l=e.domain.x,d=e.domain.y;a.xOffset=i.l+i.w*l[0],a.yOffset=i.t+i.h*(1-d[1]);var f=a.xLength=i.w*(l[1]-l[0]),p=a.yLength=i.h*(d[1]-d[0]),h=e.sector;a.sectorInRad=h.map(I);var g,m,y,v,x,_=a.sectorBBox=function(t){var e,a,r,i,n=t[0],o=t[1],l=o-n,s=F(n,360),u=s+l,c=Math.cos(I(s)),d=Math.sin(I(s)),f=Math.cos(I(u)),p=Math.sin(I(u));i=s<=90&&u>=90||s>90&&u>=450?1:d<=0&&p<=0?0:Math.max(d,p);e=s<=180&&u>=180||s>180&&u>=540?-1:c>=0&&f>=0?0:Math.min(c,f);a=s<=270&&u>=270||s>270&&u>=630?-1:d>=0&&p>=0?0:Math.min(d,p);r=u>=360?1:c<=0&&f<=0?0:Math.max(c,f);return[e,a,r,i]}(h),b=_[2]-_[0],k=_[3]-_[1],w=p/f,M=Math.abs(k/b);w>M?(g=f,x=(p-(m=f*M))/i.h/2,y=[l[0],l[1]],v=[d[0]+x,d[1]-x]):(m=p,x=(f-(g=p/M))/i.w/2,y=[l[0]+x,l[1]-x],v=[d[0],d[1]]),a.xLength2=g,a.yLength2=m,a.xDomain2=y,a.yDomain2=v;var A=a.xOffset2=i.l+i.w*y[0],D=a.yOffset2=i.t+i.h*(1-v[1]),T=a.radius=g/b,L=a.innerRadius=e.hole*T,C=a.cx=A-T*_[0],S=a.cy=D+T*_[3],P=a.cxx=C-A,O=a.cyy=S-D;a.radialAxis=a.mockAxis(t,e,n,{_id:"x",side:{counterclockwise:"top",clockwise:"bottom"}[n.side],_realSide:n.side,domain:[L/i.w,T/i.w]}),a.angularAxis=a.mockAxis(t,e,o,{side:"right",domain:[0,Math.PI],autorange:!1}),a.doAutoRange(t,e),a.updateAngularAxis(t,e),a.updateRadialAxis(t,e),a.updateRadialAxisTitle(t,e),a.xaxis=a.mockCartesianAxis(t,e,{_id:"x",domain:y}),a.yaxis=a.mockCartesianAxis(t,e,{_id:"y",domain:v});var z=a.pathSubplot();a.clipPaths.forTraces.select("path").attr("d",z).attr("transform",s(P,O)),r.frontplot.attr("transform",s(A,D)).call(c.setClipUrl,a._hasClipOnAxisFalse?null:a.clipIds.forTraces,a.gd),r.bg.attr("d",z).attr("transform",s(C,S)).call(u.fill,e.bgcolor)},O.mockAxis=function(t,e,a,r){var i=o.extendFlat({},a,r);return h(i,e,t),i},O.mockCartesianAxis=function(t,e,a){var r=this,i=a._id,n=o.extendFlat({type:"linear"},a);p(n,t);var l={x:[0,2],y:[1,3]};return n.setRange=function(){var t=r.sectorBBox,a=l[i],o=r.radialAxis._rl,s=(o[1]-o[0])/(1-e.hole);n.range=[t[a[0]]*s,t[a[1]]*s]},n.isPtWithinRange="x"===i?function(t){return r.isPtInside(t)}:function(){return!0},n.setRange(),n.setScale(),n},O.doAutoRange=function(t,e){var a=this.gd,r=this.radialAxis,i=e.radialaxis;r.setScale(),g(a,r);var n=r.range;i.range=n.slice(),i._input.range=n.slice(),r._rl=[r.r2l(n[0],null,"gregorian"),r.r2l(n[1],null,"gregorian")]},O.updateRadialAxis=function(t,e){var a=this,r=a.gd,i=a.layers,n=a.radius,c=a.innerRadius,d=a.cx,p=a.cy,h=e.radialaxis,g=F(e.sector[0],360),m=a.radialAxis,y=c<n;a.fillViewInitialKey("radialaxis.angle",h.angle),a.fillViewInitialKey("radialaxis.range",m.range.slice()),m.setGeometry(),"auto"===m.tickangle&&g>90&&g<=270&&(m.tickangle=180);var v=function(t){return s(m.l2p(t.x)+c,0)},x=z(h);if(a.radialTickLayout!==x&&(i["radial-axis"].selectAll(".xtick").remove(),a.radialTickLayout=x),y){m.setScale();var _=f.calcTicks(m),b=f.clipEnds(m,_),k=f.getTickSigns(m)[2];f.drawTicks(r,m,{vals:_,layer:i["radial-axis"],path:f.makeTickPath(m,0,k),transFn:v,crisp:!1}),f.drawGrid(r,m,{vals:b,layer:i["radial-grid"],path:function(t){return a.pathArc(m.r2p(t.x)+c)},transFn:o.noop,crisp:!1}),f.drawLabels(r,m,{vals:_,layer:i["radial-axis"],transFn:v,labelFns:f.makeLabelFns(m,0)})}var w=a.radialAxisAngle=a.vangles?S(R(I(h.angle),a.vangles)):h.angle,M=s(d,p),A=M+l(-w);j(i["radial-axis"],y&&(h.showticklabels||h.ticks),{transform:A}),j(i["radial-grid"],y&&h.showgrid,{transform:M}),j(i["radial-line"].select("line"),y&&h.showline,{x1:c,y1:0,x2:n,y2:0,transform:A}).attr("stroke-width",h.linewidth).call(u.stroke,h.linecolor)},O.updateRadialAxisTitle=function(t,e,a){var r=this,i=r.gd,n=r.radius,o=r.cx,l=r.cy,s=e.radialaxis,u=r.id+"title",d=void 0!==a?a:r.radialAxisAngle,f=I(d),p=Math.cos(f),h=Math.sin(f),g=0;if(s.title){var m=c.bBox(r.layers["radial-axis"].node()).height,y=s.title.font.size;g="counterclockwise"===s.side?-m-.4*y:m+.8*y}r.layers["radial-axis-title"]=x.draw(i,u,{propContainer:s,propName:r.id+".radialaxis.title",placeholder:C(i,"Click to enter radial axis title"),attributes:{x:o+n/2*p+g*h,y:l-n/2*h+g*p,"text-anchor":"middle"},transform:{rotate:-d}})},O.updateAngularAxis=function(t,e){var a=this,r=a.gd,i=a.layers,n=a.radius,c=a.innerRadius,d=a.cx,p=a.cy,h=e.angularaxis,g=a.angularAxis;a.fillViewInitialKey("angularaxis.rotation",h.rotation),g.setGeometry(),g.setScale();var m=function(t){return g.t2g(t.x)};"linear"===g.type&&"radians"===g.thetaunit&&(g.tick0=S(g.tick0),g.dtick=S(g.dtick));var y=function(t){return s(d+n*Math.cos(t),p-n*Math.sin(t))},v=f.makeLabelFns(g,0).labelStandoff,x={xFn:function(t){var e=m(t);return Math.cos(e)*v},yFn:function(t){var e=m(t),a=Math.sin(e)>0?.2:1;return-Math.sin(e)*(v+t.fontSize*a)+Math.abs(Math.cos(e))*(t.fontSize*D)},anchorFn:function(t){var e=m(t),a=Math.cos(e);return Math.abs(a)<.1?"middle":a>0?"start":"end"},heightFn:function(t,e,a){var r=m(t);return-.5*(1+Math.sin(r))*a}},_=z(h);a.angularTickLayout!==_&&(i["angular-axis"].selectAll("."+g._id+"tick").remove(),a.angularTickLayout=_);var b,k=f.calcTicks(g);if("linear"===e.gridshape?(b=k.map(m),o.angleDelta(b[0],b[1])<0&&(b=b.slice().reverse())):b=null,a.vangles=b,"category"===g.type&&(k=k.filter((function(t){return o.isAngleInsideSector(m(t),a.sectorInRad)}))),g.visible){var w="inside"===g.ticks?-1:1,M=(g.linewidth||1)/2;f.drawTicks(r,g,{vals:k,layer:i["angular-axis"],path:"M"+w*M+",0h"+w*g.ticklen,transFn:function(t){var e=m(t);return y(e)+l(-S(e))},crisp:!1}),f.drawGrid(r,g,{vals:k,layer:i["angular-grid"],path:function(t){var e=m(t),a=Math.cos(e),r=Math.sin(e);return"M"+[d+c*a,p-c*r]+"L"+[d+n*a,p-n*r]},transFn:o.noop,crisp:!1}),f.drawLabels(r,g,{vals:k,layer:i["angular-axis"],repositionOnUpdate:!0,transFn:function(t){return y(m(t))},labelFns:x})}j(i["angular-line"].select("path"),h.showline,{d:a.pathSubplot(),transform:s(d,p)}).attr("stroke-width",h.linewidth).call(u.stroke,h.linecolor)},O.updateFx=function(t,e){this.gd._context.staticPlot||(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1),this.updateMainDrag(t))},O.updateMainDrag=function(t){var e,a,l=this,u=l.gd,c=l.layers,d=t._zoomlayer,f=T.MINZOOM,p=T.OFFEDGE,h=l.radius,g=l.innerRadius,x=l.cx,w=l.cy,M=l.cxx,A=l.cyy,D=l.sectorInRad,C=l.vangles,F=l.radialAxis,I=L.clampTiny,S=L.findXYatLength,P=L.findEnclosingVertexAngles,O=T.cornerHalfWidth,z=T.cornerLen/2,R=m.makeDragger(c,"path","maindrag","crosshair");r.select(R).attr("d",l.pathSubplot()).attr("transform",s(x,w));var j,N,U,B,G,H,Z,q,E,W={element:R,gd:u,subplot:l.id,plotinfo:{id:l.id,xaxis:l.xaxis,yaxis:l.yaxis},xaxes:[l.xaxis],yaxes:[l.yaxis]};function V(t,e){return Math.sqrt(t*t+e*e)}function X(t,e){return V(t-M,e-A)}function Y(t,e){return Math.atan2(A-e,t-M)}function K(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function J(t,e){if(0===t)return l.pathSector(2*O);var a=z/t,r=e-a,i=e+a,n=Math.max(0,Math.min(t,h)),o=n-O,s=n+O;return"M"+K(o,r)+"A"+[o,o]+" 0,0,0 "+K(o,i)+"L"+K(s,i)+"A"+[s,s]+" 0,0,1 "+K(s,r)+"Z"}function $(t,e,a){if(0===t)return l.pathSector(2*O);var r,i,n=K(t,e),o=K(t,a),s=I((n[0]+o[0])/2),u=I((n[1]+o[1])/2);if(s&&u){var c=u/s,d=-1/c,f=S(O,c,s,u);r=S(z,d,f[0][0],f[0][1]),i=S(z,d,f[1][0],f[1][1])}else{var p,h;u?(p=z,h=O):(p=O,h=z),r=[[s-p,u-h],[s+p,u-h]],i=[[s-p,u+h],[s+p,u+h]]}return"M"+r.join("L")+"L"+i.reverse().join("L")+"Z"}function Q(t,e){return e=Math.max(Math.min(e,h),g),t<p?t=0:h-t<p?t=h:e<p?e=0:h-e<p&&(e=h),Math.abs(e-t)>f?(t<e?(U=t,B=e):(U=e,B=t),!0):(U=null,B=null,!1)}function tt(t,e){t=t||G,e=e||"M0,0Z",q.attr("d",t),E.attr("d",e),m.transitionZoombox(q,E,H,Z),H=!0;var a={};nt(a),u.emit("plotly_relayouting",a)}function et(t,r){var i,n,o=j+(t*=e),s=N+(r*=a),u=X(j,N),c=Math.min(X(o,s),h),d=Y(j,N);Q(u,c)&&(i=G+l.pathSector(B),U&&(i+=l.pathSector(U)),n=J(U,d)+J(B,d)),tt(i,n)}function at(t,e,a,r){var i=L.findIntersectionXY(a,r,a,[t-M,A-e]);return V(i[0],i[1])}function rt(t,e){var a,r,i=j+t,n=N+e,o=Y(j,N),s=Y(i,n),u=P(o,C),c=P(s,C);Q(at(j,N,u[0],u[1]),Math.min(at(i,n,c[0],c[1]),h))&&(a=G+l.pathSector(B),U&&(a+=l.pathSector(U)),r=[$(U,u[0],u[1]),$(B,u[0],u[1])].join(" ")),tt(a,r)}function it(){if(m.removeZoombox(u),null!==U&&null!==B){var t={};nt(t),m.showDoubleClickNotifier(u),n.call("_guiRelayout",u,t)}}function nt(t){var e=F._rl,a=(e[1]-e[0])/(1-g/h)/h,r=[e[0]+(U-g)*a,e[0]+(B-g)*a];t[l.id+".radialaxis.range"]=r}function ot(t,e){var a=u._fullLayout.clickmode;if(m.removeZoombox(u),2===t){var r={};for(var i in l.viewInitial)r[l.id+"."+i]=l.viewInitial[i];u.emit("plotly_doubleclick",null),n.call("_guiRelayout",u,r)}a.indexOf("select")>-1&&1===t&&b(e,u,[l.xaxis],[l.yaxis],l.id,W),a.indexOf("event")>-1&&v.click(u,e,l.id)}W.prepFn=function(t,r,n){var s=u._fullLayout.dragmode,c=R.getBoundingClientRect();u._fullLayout._calcInverseTransform(u);var f=u._fullLayout._invTransform;e=u._fullLayout._invScaleX,a=u._fullLayout._invScaleY;var p=o.apply3DTransform(f)(r-c.left,n-c.top);if(j=p[0],N=p[1],C){var g=L.findPolygonOffset(h,D[0],D[1],C);j+=M+g[0],N+=A+g[1]}switch(s){case"zoom":W.moveFn=C?rt:et,W.clickFn=ot,W.doneFn=it,function(){U=null,B=null,G=l.pathSubplot(),H=!1;var t=u._fullLayout[l.id];Z=i(t.bgcolor).getLuminance(),(q=m.makeZoombox(d,Z,x,w,G)).attr("fill-rule","evenodd"),E=m.makeCorners(d,x,w),k(u)}();break;case"select":case"lasso":_(t,r,n,W,s)}},R.onmousemove=function(t){v.hover(u,t,l.id),u._fullLayout._lasthover=R,u._fullLayout._hoversubplot=l.id},R.onmouseout=function(t){u._dragging||y.unhover(u,t)},y.init(W)},O.updateRadialDrag=function(t,e,a){var i=this,u=i.gd,c=i.layers,d=i.radius,f=i.innerRadius,p=i.cx,h=i.cy,g=i.radialAxis,v=T.radialDragBoxSize,x=v/2;if(g.visible){var _,b,w,D=I(i.radialAxisAngle),L=g._rl,C=L[0],F=L[1],P=L[a],O=.75*(L[1]-L[0])/(1-e.hole)/d;a?(_=p+(d+x)*Math.cos(D),b=h-(d+x)*Math.sin(D),w="radialdrag"):(_=p+(f-x)*Math.cos(D),b=h-(f-x)*Math.sin(D),w="radialdrag-inner");var z,N,U,B=m.makeRectDragger(c,w,"crosshair",-x,-x,v,v),G={element:B,gd:u};j(r.select(B),g.visible&&f<d,{transform:s(_,b)}),G.prepFn=function(){z=null,N=null,U=null,G.moveFn=H,G.doneFn=Z,k(u)},G.clampFn=function(t,e){return Math.sqrt(t*t+e*e)<T.MINDRAG&&(t=0,e=0),[t,e]},y.init(G)}function H(t,e){if(z)z(t,e);else{var r=[t,-e],n=[Math.cos(D),Math.sin(D)],l=Math.abs(o.dot(r,n)/Math.sqrt(o.dot(r,r)));isNaN(l)||(z=l<.5?q:E)}var s={};!function(t){null!==N?t[i.id+".radialaxis.angle"]=N:null!==U&&(t[i.id+".radialaxis.range["+a+"]"]=U)}(s),u.emit("plotly_relayouting",s)}function Z(){null!==N?n.call("_guiRelayout",u,i.id+".radialaxis.angle",N):null!==U&&n.call("_guiRelayout",u,i.id+".radialaxis.range["+a+"]",U)}function q(t,e){if(0!==a){var r=_+t,n=b+e;N=Math.atan2(h-n,r-p),i.vangles&&(N=R(N,i.vangles)),N=S(N);var o=s(p,h)+l(-N);c["radial-axis"].attr("transform",o),c["radial-line"].select("line").attr("transform",o);var u=i.gd._fullLayout,d=u[i.id];i.updateRadialAxisTitle(u,d,N)}}function E(t,e){var r=o.dot([t,-e],[Math.cos(D),Math.sin(D)]);if(U=P-O*r,O>0===(a?U>C:U<F)){var l=u._fullLayout,s=l[i.id];g.range[a]=U,g._rl[a]=U,i.updateRadialAxis(l,s),i.xaxis.setRange(),i.xaxis.setScale(),i.yaxis.setRange(),i.yaxis.setScale();var c=!1;for(var d in i.traceHash){var f=i.traceHash[d],p=o.filterVisible(f);f[0][0].trace._module.plot(u,i,p,s),n.traceIs(d,"gl")&&p.length&&(c=!0)}c&&(M(u),A(u))}else U=null}},O.updateAngularDrag=function(t){var e=this,a=e.gd,i=e.layers,u=e.radius,d=e.angularAxis,f=e.cx,p=e.cy,h=e.cxx,g=e.cyy,v=T.angularDragBoxSize,x=m.makeDragger(i,"path","angulardrag","move"),_={element:x,gd:a};function b(t,e){return Math.atan2(g+v-e,t-h-v)}r.select(x).attr("d",e.pathAnnulus(u,u+v)).attr("transform",s(f,p)).call(w,"move");var D,L,C,F,I,P,O=i.frontplot.select(".scatterlayer").selectAll(".trace"),z=O.selectAll(".point"),R=O.selectAll(".textpoint");function j(u,m){var y=e.gd._fullLayout,v=y[e.id],x=b(D+u*t._invScaleX,L+m*t._invScaleY),_=S(x-P);if(F=C+_,i.frontplot.attr("transform",s(e.xOffset2,e.yOffset2)+l([-_,h,g])),e.vangles){I=e.radialAxisAngle+_;var k=s(f,p)+l(-_),w=s(f,p)+l(-I);i.bg.attr("transform",k),i["radial-grid"].attr("transform",k),i["radial-axis"].attr("transform",w),i["radial-line"].select("line").attr("transform",w),e.updateRadialAxisTitle(y,v,I)}else e.clipPaths.forTraces.select("path").attr("transform",s(h,g)+l(_));z.each((function(){var t=r.select(this),e=c.getTranslate(t);t.attr("transform",s(e.x,e.y)+l([_]))})),R.each((function(){var t=r.select(this),e=t.select("text"),a=c.getTranslate(t);t.attr("transform",l([_,e.attr("x"),e.attr("y")])+s(a.x,a.y))})),d.rotation=o.modHalf(F,360),e.updateAngularAxis(y,v),e._hasClipOnAxisFalse&&!o.isFullCircle(e.sectorInRad)&&O.call(c.hideOutsideRangePoints,e);var T=!1;for(var j in e.traceHash)if(n.traceIs(j,"gl")){var U=e.traceHash[j],B=o.filterVisible(U);U[0][0].trace._module.plot(a,e,B,v),B.length&&(T=!0)}T&&(M(a),A(a));var G={};N(G),a.emit("plotly_relayouting",G)}function N(t){t[e.id+".angularaxis.rotation"]=F,e.vangles&&(t[e.id+".radialaxis.angle"]=I)}function U(){R.select("text").attr("transform",null);var t={};N(t),n.call("_guiRelayout",a,t)}_.prepFn=function(r,i,n){var l=t[e.id];C=l.angularaxis.rotation;var s=x.getBoundingClientRect();D=i-s.left,L=n-s.top,a._fullLayout._calcInverseTransform(a);var u=o.apply3DTransform(t._invTransform)(D,L);D=u[0],L=u[1],P=b(D,L),_.moveFn=j,_.doneFn=U,k(a)},e.vangles&&!o.isFullCircle(e.sectorInRad)&&(_.prepFn=o.noop,w(r.select(x),null)),y.init(_)},O.isPtInside=function(t){var e=this.sectorInRad,a=this.vangles,r=this.angularAxis.c2g(t.theta),i=this.radialAxis,n=i.c2l(t.r),l=i._rl;return(a?L.isPtInsidePolygon:o.isPtInsideSector)(n,r,l,e,a)},O.pathArc=function(t){var e=this.sectorInRad,a=this.vangles;return(a?L.pathPolygon:o.pathArc)(t,e[0],e[1],a)},O.pathSector=function(t){var e=this.sectorInRad,a=this.vangles;return(a?L.pathPolygon:o.pathSector)(t,e[0],e[1],a)},O.pathAnnulus=function(t,e){var a=this.sectorInRad,r=this.vangles;return(r?L.pathPolygonAnnulus:o.pathAnnulus)(t,e,a[0],a[1],r)},O.pathSubplot=function(){var t=this.innerRadius,e=this.radius;return t?this.pathAnnulus(t,e):this.pathSector(e)},O.fillViewInitialKey=function(t,e){t in this.viewInitial||(this.viewInitial[t]=e)}},48113:function(t,e,a){var r=a(47401),i=a(58947),n=r.deg2rad,o=r.rad2deg;t.exports=function(t,e,a){switch(i(t,a),t._id){case"x":case"radialaxis":!function(t,e){var a=e._subplot;t.setGeometry=function(){var e=t._rl[0],r=t._rl[1],i=a.innerRadius,n=(a.radius-i)/(r-e),o=i/n,l=e>r?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(a){var r=t.c2l(a)-e;return(l(r)?r:0)+o},t.g2c=function(a){return t.l2c(a+e-o)},t.g2p=function(t){return t*n},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case"angularaxis":!function(t,e){var a=t.type;if("linear"===a){var i=t.d2c,l=t.c2d;t.d2c=function(t,e){return function(t,e){return"degrees"===e?n(t):t}(i(t),e)},t.c2d=function(t,e){return l(function(t,e){return"degrees"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,i){var n,o,l=e[i],s=e._length,u=function(a){return t.d2c(a,e.thetaunit)};if(l){if(r.isTypedArray(l)&&"linear"===a){if(s===l.length)return l;if(l.subarray)return l.subarray(0,s)}for(n=new Array(s),o=0;o<s;o++)n[o]=u(l[o])}else{var c=i+"0",d="d"+i,f=c in e?u(e[c]):0,p=e[d]?u(e[d]):(t.period||2*Math.PI)/s;for(n=new Array(s),o=0;o<s;o++)n[o]=f+o*p}return n},t.setGeometry=function(){var i,l,s,u,c=e.sector,d=c.map(n),f={clockwise:-1,counterclockwise:1}[t.direction],p=n(t.rotation),h=function(t){return f*t+p},g=function(t){return(t-p)/f};switch(a){case"linear":l=i=r.identity,u=n,s=o,t.range=r.isFullCircle(d)?[c[0],c[0]+360]:d.map(g).map(o);break;case"category":var m=t._categories.length,y=t.period?Math.max(t.period,m):m;0===y&&(y=1),l=u=function(t){return 2*t*Math.PI/y},i=s=function(t){return t*y/Math.PI/2},t.range=[0,y]}t.c2g=function(t){return h(l(t))},t.g2c=function(t){return i(g(t))},t.t2g=function(t){return h(u(t))},t.g2t=function(t){return s(g(t))}}}(t,e)}}},20112:function(t,e,a){var r=a(47401),i=a(92704),n=a(16688).N;t.exports=function(t,e,a,o){var l,s,u=o.type,c=o.attributes,d=o.handleDefaults,f=o.partition||"x",p=e._subplots[u],h=p.length,g=h&&p[0].replace(/\d+$/,"");function m(t,e){return r.coerce(l,s,c,t,e)}for(var y=0;y<h;y++){var v=p[y];l=t[v]?t[v]:t[v]={},s=i.newContainer(e,v,g),m("uirevision",e.uirevision);var x={};x[f]=[y/h,(y+1)/h],n(s,e,m,x),o.id=v,d(l,s,m,o)}}},4216:function(t,e,a){var r=a(95888),i=r.FORMAT_LINK,n=r.DATE_FORMAT_LINK;function o(t){return["Variables are inserted using %{variable},",'for example "y: %{y}"'+(t&&t.supportOther?" as well as %{xother}, {%_xother}, {%_xother_}, {%xother_}. When showing info for several points, *xother* will be added to those with different x positions from the first point. An underscore before or after *(x|y)other* will add a space on that side, only when this field is shown.":"."),'Numbers are formatted using d3-format\'s syntax %{variable:d3-format}, for example "Price: %{y:$.2f}".',i,"for details on the formatting syntax.",'Dates are formatted using d3-time-format\'s syntax %{variable|d3-time-format}, for example "Day: %{2019-01-01|%A}".',n,"for details on the date formatting syntax."].join(" ")}function l(t){var e=t.description?" "+t.description:"",a=t.keys||[];if(a.length>0){for(var r=[],i=0;i<a.length;i++)r[i]="`"+a[i]+"`";e+="Finally, the template string has access to ",e=1===a.length?"variable "+r[0]:"variables "+r.slice(0,-1).join(", ")+" and "+r.slice(-1)+"."}return e}e.r=function(t,e){t=t||{};var a=l(e=e||{}),r={valType:"string",dflt:"",editType:t.editType||"none",description:["Template string used for rendering the information that appear on hover box.","Note that this will override `hoverinfo`.",o({supportOther:!0}),"The variables available in `hovertemplate` are the ones emitted as event data described at this link https://plotly.com/javascript/plotlyjs-events/#event-data.","Additionally, every attributes that can be specified per-point (the ones that are `arrayOk: true`) are available.",a,'Anything contained in tag `<extra>` is displayed in the secondary box, for example "<extra>{fullData.name}</extra>".',"To hide the secondary box completely, use an empty tag `<extra></extra>`."].join(" ")};return!1!==t.arrayOk&&(r.arrayOk=!0),r},e.a=function(t,e){t=t||{};var a=l(e=e||{}),r={valType:"string",dflt:"",editType:t.editType||"calc",description:["Template string used for rendering the information text that appear on points.","Note that this will override `textinfo`.",o(),"Every attributes that can be specified per-point (the ones that are `arrayOk: true`) are available.",a].join(" ")};return!1!==t.arrayOk&&(r.arrayOk=!0),r}},31974:function(t,e,a){var r=a(77989),i=a(13373).fX,n=a(47401).counterRegex,o="ternary";e.name=o;var l=e.attr="subplot";e.idRoot=o,e.idRegex=e.attrRegex=n(o),(e.attributes={})[l]={valType:"subplotid",dflt:"ternary",editType:"calc",description:["Sets a reference between this trace's data coordinates and","a ternary subplot.","If *ternary* (the default value), the data refer to `layout.ternary`.","If *ternary2*, the data refer to `layout.ternary2`, and so on."].join(" ")},e.layoutAttributes=a(60536),e.supplyLayoutDefaults=a(13551),e.plot=function(t){for(var e=t._fullLayout,a=t.calcdata,n=e._subplots[o],l=0;l<n.length;l++){var s=n[l],u=i(a,o,s),c=e[s]._subplot;c||(c=new r({id:s,graphDiv:t,container:e._ternarylayer.node()},e),e[s]._subplot=c),c.plot(u,e,t._promises)}},e.clean=function(t,e,a,r){for(var i=r._subplots[o]||[],n=0;n<i.length;n++){var l=i[n],s=r[l]._subplot;!e[l]&&s&&(s.plotContainer.remove(),s.clipDef.remove(),s.clipDefRelative.remove(),s.layers["a-title"].remove(),s.layers["b-title"].remove(),s.layers["c-title"].remove())}}},60536:function(t,e,a){var r=a(62405),i=a(16688).u,n=a(33333),o=a(17342).overrideAll,l=a(87241).extendFlat,s={title:{text:n.title.text,font:n.title.font},color:n.color,tickmode:n.tickmode,nticks:l({},n.nticks,{dflt:6,min:1}),tick0:n.tick0,dtick:n.dtick,tickvals:n.tickvals,ticktext:n.ticktext,ticks:n.ticks,ticklen:n.ticklen,tickwidth:n.tickwidth,tickcolor:n.tickcolor,showticklabels:n.showticklabels,showtickprefix:n.showtickprefix,tickprefix:n.tickprefix,showticksuffix:n.showticksuffix,ticksuffix:n.ticksuffix,showexponent:n.showexponent,exponentformat:n.exponentformat,minexponent:n.minexponent,separatethousands:n.separatethousands,tickfont:n.tickfont,tickangle:n.tickangle,tickformat:n.tickformat,tickformatstops:n.tickformatstops,hoverformat:n.hoverformat,showline:l({},n.showline,{dflt:!0}),linecolor:n.linecolor,linewidth:n.linewidth,showgrid:l({},n.showgrid,{dflt:!0}),gridcolor:n.gridcolor,gridwidth:n.gridwidth,layer:n.layer,min:{valType:"number",dflt:0,min:0,description:["The minimum value visible on this axis.","The maximum is determined by the sum minus the minimum","values of the other two axes. The full view corresponds to","all the minima set to zero."].join(" ")},_deprecated:{title:n._deprecated.title,titlefont:n._deprecated.titlefont}},u=t.exports=o({domain:i({name:"ternary"}),bgcolor:{valType:"color",dflt:r.background,description:"Set the background color of the subplot"},sum:{valType:"number",dflt:1,min:0,description:["The number each triplet should sum to,","and the maximum range of each axis"].join(" ")},aaxis:s,baxis:s,caxis:s},"plot","from-root");u.uirevision={valType:"any",editType:"none",description:["Controls persistence of user-driven changes in axis `min` and `title`,","if not overridden in the individual axes.","Defaults to `layout.uirevision`."].join(" ")},u.aaxis.uirevision=u.baxis.uirevision=u.caxis.uirevision={valType:"any",editType:"none",description:["Controls persistence of user-driven changes in axis `min`,","and `title` if in `editable: true` configuration.","Defaults to `ternary<N>.uirevision`."].join(" ")}},13551:function(t,e,a){var r=a(31454),i=a(92704),n=a(47401),o=a(20112),l=a(51860),s=a(49593),u=a(37801),c=a(28205),d=a(60536),f=["aaxis","baxis","caxis"];function p(t,e,a,n){var o,l,s,u=a("bgcolor"),c=a("sum");n.bgColor=r.combine(u,n.paper_bgcolor);for(var d=0;d<f.length;d++)l=t[o=f[d]]||{},(s=i.newContainer(e,o))._name=o,h(l,s,n,e);var p=e.aaxis,g=e.baxis,m=e.caxis;p.min+g.min+m.min>=c&&(p.min=0,g.min=0,m.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function h(t,e,a,r){var i=d[e._name];function o(a,r){return n.coerce(t,e,i,a,r)}o("uirevision",r.uirevision),e.type="linear";var f=o("color"),p=f!==i.color.dflt?f:a.font.color,h=e._name.charAt(0).toUpperCase(),g="Component "+h,m=o("title.text",g);e._hovertitle=m===g?m:h,n.coerceFont(o,"title.font",{family:a.font.family,size:n.bigFont(a.font.size),color:p}),o("min"),u(t,e,o,"linear"),l(t,e,o,"linear",{}),s(t,e,o,{outerTicks:!0}),o("showticklabels")&&(n.coerceFont(o,"tickfont",{family:a.font.family,size:a.font.size,color:p}),o("tickangle"),o("tickformat")),c(t,e,o,{dfltColor:f,bgColor:a.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:i}),o("hoverformat"),o("layer")}t.exports=function(t,e,a){o(t,e,a,{type:"ternary",attributes:d,handleDefaults:p,font:e.font,paper_bgcolor:e.paper_bgcolor})}},77989:function(t,e,a){var r=a(62258),i=a(91771),n=a(62282),o=a(47401),l=o.strTranslate,s=o._,u=a(31454),c=a(41707),d=a(58947),f=a(87241).extendFlat,p=a(35722),h=a(37762),g=a(52783),m=a(21661),y=a(42910),v=y.freeMode,x=y.rectMode,_=a(50075),b=a(88987).prepSelect,k=a(88987).selectOnClick,w=a(88987).clearSelect,M=a(88987).clearSelectionsCache,A=a(56890);function D(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}t.exports=D;var T=D.prototype;T.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},T.plot=function(t,e){var a=this,r=e[a.id],i=e._size;a._hasClipOnAxisFalse=!1;for(var n=0;n<t.length;n++){if(!1===t[n][0].trace.cliponaxis){a._hasClipOnAxisFalse=!0;break}}a.updateLayers(r),a.adjustLayout(r,i),p.generalUpdatePerTraceModule(a.graphDiv,a,t,r),a.layers.plotbg.select("path").call(u.fill,r.bgcolor)},T.makeFramework=function(t){var e=this,a=e.graphDiv,r=t[e.id],i=e.clipId="clip"+e.layoutId+e.id,n=e.clipIdRelative="clip-relative"+e.layoutId+e.id;e.clipDef=o.ensureSingleById(t._clips,"clipPath",i,(function(t){t.append("path").attr("d","M0,0Z")})),e.clipDefRelative=o.ensureSingleById(t._clips,"clipPath",n,(function(t){t.append("path").attr("d","M0,0Z")})),e.plotContainer=o.ensureSingle(e.container,"g",e.id),e.updateLayers(r),c.setClipUrl(e.layers.backplot,i,a),c.setClipUrl(e.layers.grids,i,a)},T.updateLayers=function(t){var e=this.layers,a=["draglayer","plotbg","backplot","grids"];"below traces"===t.aaxis.layer&&a.push("aaxis","aline"),"below traces"===t.baxis.layer&&a.push("baxis","bline"),"below traces"===t.caxis.layer&&a.push("caxis","cline"),a.push("frontplot"),"above traces"===t.aaxis.layer&&a.push("aaxis","aline"),"above traces"===t.baxis.layer&&a.push("baxis","bline"),"above traces"===t.caxis.layer&&a.push("caxis","cline");var i=this.plotContainer.selectAll("g.toplevel").data(a,String),n=["agrid","bgrid","cgrid"];i.enter().append("g").attr("class",(function(t){return"toplevel "+t})).each((function(t){var a=r.select(this);e[t]=a,"frontplot"===t?a.append("g").classed("scatterlayer",!0):"backplot"===t?a.append("g").classed("maplayer",!0):"plotbg"===t?a.append("path").attr("d","M0,0Z"):"aline"===t||"bline"===t||"cline"===t?a.append("path"):"grids"===t&&n.forEach((function(t){e[t]=a.append("g").classed("grid "+t,!0)}))})),i.order()};var L=Math.sqrt(4/3);T.adjustLayout=function(t,e){var a,r,i,n,o,s,p=this,h=t.domain,g=(h.x[0]+h.x[1])/2,m=(h.y[0]+h.y[1])/2,y=h.x[1]-h.x[0],v=h.y[1]-h.y[0],x=y*e.w,_=v*e.h,b=t.sum,k=t.aaxis.min,w=t.baxis.min,M=t.caxis.min;x>L*_?i=(n=_)*L:n=(i=x)/L,o=y*i/x,s=v*n/_,a=e.l+e.w*g-i/2,r=e.t+e.h*(1-m)-n/2,p.x0=a,p.y0=r,p.w=i,p.h=n,p.sum=b,p.xaxis={type:"linear",range:[k+2*M-b,b-k-2*w],domain:[g-o/2,g+o/2],_id:"x"},d(p.xaxis,p.graphDiv._fullLayout),p.xaxis.setScale(),p.xaxis.isPtWithinRange=function(t){return t.a>=p.aaxis.range[0]&&t.a<=p.aaxis.range[1]&&t.b>=p.baxis.range[1]&&t.b<=p.baxis.range[0]&&t.c>=p.caxis.range[1]&&t.c<=p.caxis.range[0]},p.yaxis={type:"linear",range:[k,b-w-M],domain:[m-s/2,m+s/2],_id:"y"},d(p.yaxis,p.graphDiv._fullLayout),p.yaxis.setScale(),p.yaxis.isPtWithinRange=function(){return!0};var A=p.yaxis.domain[0],D=p.aaxis=f({},t.aaxis,{range:[k,b-w-M],side:"left",tickangle:(+t.aaxis.tickangle||0)-30,domain:[A,A+s*L],anchor:"free",position:0,_id:"y",_length:i});d(D,p.graphDiv._fullLayout),D.setScale();var T=p.baxis=f({},t.baxis,{range:[b-k-M,w],side:"bottom",domain:p.xaxis.domain,anchor:"free",position:0,_id:"x",_length:i});d(T,p.graphDiv._fullLayout),T.setScale();var C=p.caxis=f({},t.caxis,{range:[b-k-w,M],side:"right",tickangle:(+t.caxis.tickangle||0)+30,domain:[A,A+s*L],anchor:"free",position:0,_id:"y",_length:i});d(C,p.graphDiv._fullLayout),C.setScale();var F="M"+a+","+(r+n)+"h"+i+"l-"+i/2+",-"+n+"Z";p.clipDef.select("path").attr("d",F),p.layers.plotbg.select("path").attr("d",F);var I="M0,"+n+"h"+i+"l-"+i/2+",-"+n+"Z";p.clipDefRelative.select("path").attr("d",I);var S=l(a,r);p.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",S),p.clipDefRelative.select("path").attr("transform",null);var P=l(a-T._offset,r+n);p.layers.baxis.attr("transform",P),p.layers.bgrid.attr("transform",P);var O=l(a+i/2,r)+"rotate(30)"+l(0,-D._offset);p.layers.aaxis.attr("transform",O),p.layers.agrid.attr("transform",O);var z=l(a+i/2,r)+"rotate(-30)"+l(0,-C._offset);p.layers.caxis.attr("transform",z),p.layers.cgrid.attr("transform",z),p.drawAxes(!0),p.layers.aline.select("path").attr("d",D.showline?"M"+a+","+(r+n)+"l"+i/2+",-"+n:"M0,0").call(u.stroke,D.linecolor||"#000").style("stroke-width",(D.linewidth||0)+"px"),p.layers.bline.select("path").attr("d",T.showline?"M"+a+","+(r+n)+"h"+i:"M0,0").call(u.stroke,T.linecolor||"#000").style("stroke-width",(T.linewidth||0)+"px"),p.layers.cline.select("path").attr("d",C.showline?"M"+(a+i/2)+","+r+"l"+i/2+","+n:"M0,0").call(u.stroke,C.linecolor||"#000").style("stroke-width",(C.linewidth||0)+"px"),p.graphDiv._context.staticPlot||p.initInteractions(),c.setClipUrl(p.layers.frontplot,p._hasClipOnAxisFalse?null:p.clipId,p.graphDiv)},T.drawAxes=function(t){var e=this,a=e.graphDiv,r=e.id.substr(7)+"title",i=e.layers,n=e.aaxis,o=e.baxis,l=e.caxis;if(e.drawAx(n),e.drawAx(o),e.drawAx(l),t){var u=Math.max(n.showticklabels?n.tickfont.size/2:0,(l.showticklabels?.75*l.tickfont.size:0)+("outside"===l.ticks?.87*l.ticklen:0)),c=(o.showticklabels?o.tickfont.size:0)+("outside"===o.ticks?o.ticklen:0)+3;i["a-title"]=_.draw(a,"a"+r,{propContainer:n,propName:e.id+".aaxis.title",placeholder:s(a,"Click to enter Component A title"),attributes:{x:e.x0+e.w/2,y:e.y0-n.title.font.size/3-u,"text-anchor":"middle"}}),i["b-title"]=_.draw(a,"b"+r,{propContainer:o,propName:e.id+".baxis.title",placeholder:s(a,"Click to enter Component B title"),attributes:{x:e.x0-c,y:e.y0+e.h+.83*o.title.font.size+c,"text-anchor":"middle"}}),i["c-title"]=_.draw(a,"c"+r,{propContainer:l,propName:e.id+".caxis.title",placeholder:s(a,"Click to enter Component C title"),attributes:{x:e.x0+e.w+c,y:e.y0+e.h+.83*l.title.font.size+c,"text-anchor":"middle"}})}},T.drawAx=function(t){var e,a=this,r=a.graphDiv,i=t._name,n=i.charAt(0),l=t._id,s=a.layers[i],u=n+"tickLayout",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);a[u]!==c&&(s.selectAll("."+l+"tick").remove(),a[u]=c),t.setScale();var d=h.calcTicks(t),f=h.clipEnds(t,d),p=h.makeTransTickFn(t),g=h.getTickSigns(t)[2],m=o.deg2rad(30),y=g*(t.linewidth||1)/2,v=g*t.ticklen,x=a.w,_=a.h,b="b"===n?"M0,"+y+"l"+Math.sin(m)*v+","+Math.cos(m)*v:"M"+y+",0l"+Math.cos(m)*v+","+-Math.sin(m)*v,k={a:"M0,0l"+_+",-"+x/2,b:"M0,0l-"+x/2+",-"+_,c:"M0,0l-"+_+","+x/2}[n];h.drawTicks(r,t,{vals:"inside"===t.ticks?f:d,layer:s,path:b,transFn:p,crisp:!1}),h.drawGrid(r,t,{vals:f,layer:a.layers[n+"grid"],path:k,transFn:p,crisp:!1}),h.drawLabels(r,t,{vals:d,layer:s,transFn:p,labelFns:h.makeLabelFns(t,0,30)})};var C=A.MINZOOM/2+.87,F="m-0.87,.5h"+C+"v3h-"+(C+5.2)+"l"+(C/2+2.6)+",-"+(.87*C+4.5)+"l2.6,1.5l-"+C/2+","+.87*C+"Z",I="m0.87,.5h-"+C+"v3h"+(C+5.2)+"l-"+(C/2+2.6)+",-"+(.87*C+4.5)+"l-2.6,1.5l"+C/2+","+.87*C+"Z",S="m0,1l"+C/2+","+.87*C+"l2.6,-1.5l-"+(C/2+2.6)+",-"+(.87*C+4.5)+"l-"+(C/2+2.6)+","+(.87*C+4.5)+"l2.6,1.5l"+C/2+",-"+.87*C+"Z",P=!0;function O(t){r.select(t).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}T.clearSelect=function(){M(this.dragOptions),w(this.dragOptions.gd)},T.initInteractions=function(){var t,e,a,r,d,f,p,h,y,_,w,M,D=this,T=D.layers.plotbg.select("path").node(),C=D.graphDiv,z=C._fullLayout._zoomlayer;function R(t){var e={};return e[D.id+".aaxis.min"]=t.a,e[D.id+".baxis.min"]=t.b,e[D.id+".caxis.min"]=t.c,e}function j(t,e){var a=C._fullLayout.clickmode;O(C),2===t&&(C.emit("plotly_doubleclick",null),n.call("_guiRelayout",C,R({a:0,b:0,c:0}))),a.indexOf("select")>-1&&1===t&&k(e,C,[D.xaxis],[D.yaxis],D.id,D.dragOptions),a.indexOf("event")>-1&&m.click(C,e,D.id)}function N(t,e){return 1-e/D.h}function U(t,e){return 1-(t+(D.h-e)/Math.sqrt(3))/D.w}function B(t,e){return(t-(D.h-e)/Math.sqrt(3))/D.w}function G(i,n){var o=a+i*t,l=r+n*e,s=Math.max(0,Math.min(1,N(0,r),N(0,l))),u=Math.max(0,Math.min(1,U(a,r),U(o,l))),c=Math.max(0,Math.min(1,B(a,r),B(o,l))),g=(s/2+c)*D.w,m=(1-s/2-u)*D.w,v=(g+m)/2,x=m-g,b=(1-s)*D.h,k=b-x/L;x<A.MINZOOM?(p=d,w.attr("d",y),M.attr("d","M0,0Z")):(p={a:d.a+s*f,b:d.b+u*f,c:d.c+c*f},w.attr("d",y+"M"+g+","+b+"H"+m+"L"+v+","+k+"L"+g+","+b+"Z"),M.attr("d","M"+a+","+r+"m0.5,0.5h5v-2h-5v-5h-2v5h-5v2h5v5h2ZM"+g+","+b+F+"M"+m+","+b+I+"M"+v+","+k+S)),_||(w.transition().style("fill",h>.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),M.transition().style("opacity",1).duration(200),_=!0),C.emit("plotly_relayouting",R(p))}function H(){O(C),p!==d&&(n.call("_guiRelayout",C,R(p)),P&&C.data&&C._context.showTips&&(o.notifier(s(C,"Double-click to zoom back out"),"long"),P=!1))}function Z(t,e){var a=t/D.xaxis._m,r=e/D.yaxis._m,i=[(p={a:d.a-r,b:d.b+(a+r)/2,c:d.c-(a-r)/2}).a,p.b,p.c].sort(o.sorterAsc),n=i.indexOf(p.a),s=i.indexOf(p.b),u=i.indexOf(p.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),p={a:i[n],b:i[s],c:i[u]},e=(d.a-p.a)*D.yaxis._m,t=(d.c-p.c-d.b+p.b)*D.xaxis._m);var f=l(D.x0+t,D.y0+e);D.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",f);var h=l(-t,-e);D.clipDefRelative.select("path").attr("transform",h),D.aaxis.range=[p.a,D.sum-p.b-p.c],D.baxis.range=[D.sum-p.a-p.c,p.b],D.caxis.range=[D.sum-p.a-p.b,p.c],D.drawAxes(!1),D._hasClipOnAxisFalse&&D.plotContainer.select(".scatterlayer").selectAll(".trace").call(c.hideOutsideRangePoints,D),C.emit("plotly_relayouting",R(p))}function q(){n.call("_guiRelayout",C,R(p))}this.dragOptions={element:T,gd:C,plotinfo:{id:D.id,domain:C._fullLayout[D.id].domain,xaxis:D.xaxis,yaxis:D.yaxis},subplot:D.id,prepFn:function(n,s,c){D.dragOptions.xaxes=[D.xaxis],D.dragOptions.yaxes=[D.yaxis],t=C._fullLayout._invScaleX,e=C._fullLayout._invScaleY;var g=D.dragOptions.dragmode=C._fullLayout.dragmode;v(g)?D.dragOptions.minDrag=1:D.dragOptions.minDrag=void 0,"zoom"===g?(D.dragOptions.moveFn=G,D.dragOptions.clickFn=j,D.dragOptions.doneFn=H,function(t,e,n){var s=T.getBoundingClientRect();a=e-s.left,r=n-s.top,C._fullLayout._calcInverseTransform(C);var c=C._fullLayout._invTransform,g=o.apply3DTransform(c)(a,r);a=g[0],r=g[1],d={a:D.aaxis.range[0],b:D.baxis.range[1],c:D.caxis.range[1]},p=d,f=D.aaxis.range[1]-d.a,h=i(D.graphDiv._fullLayout[D.id].bgcolor).getLuminance(),y="M0,"+D.h+"L"+D.w/2+", 0L"+D.w+","+D.h+"Z",_=!1,w=z.append("path").attr("class","zoombox").attr("transform",l(D.x0,D.y0)).style({fill:h>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("d",y),M=z.append("path").attr("class","zoombox-corners").attr("transform",l(D.x0,D.y0)).style({fill:u.background,stroke:u.defaultLine,"stroke-width":1,opacity:0}).attr("d","M0,0Z"),D.clearSelect(C)}(0,s,c)):"pan"===g?(D.dragOptions.moveFn=Z,D.dragOptions.clickFn=j,D.dragOptions.doneFn=q,d={a:D.aaxis.range[0],b:D.baxis.range[1],c:D.caxis.range[1]},p=d,D.clearSelect(C)):(x(g)||v(g))&&b(n,s,c,D.dragOptions,g)}},T.onmousemove=function(t){m.hover(C,t,D.id),C._fullLayout._lasthover=T,C._fullLayout._hoversubplot=D.id},T.onmouseout=function(t){C._dragging||g.unhover(C,t)},g.init(this.dragOptions)}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[9427],{63286:function(){},35576:function(t,e,i){i.d(e,{B8:function(){return r.B8},t$:function(){return n.t}});i(25822);var n=i(8378),r=(i(88335),i(85584),i(95548),i(50560),i(18200),i(68375));i(41894),i(61962),i(61500),i(46294),i(44595)},58313:function(t,e,i){i.d(e,{A:function(){return o}});var n=i(48446),r=i.n(n);function o(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e={};return function(i){var n=i.callback,o=i.indices,s=r()(o),f=!t||s.every((function(t){var e=o[t];return Array.isArray(e)?e.length>0:e>=0})),h=s.length!==r()(e).length||s.some((function(t){var i=e[t],n=o[t];return Array.isArray(n)?i.join(",")!==n.join(","):i!==n}));e=o,f&&h&&n(o)}}},86845:function(t,e,i){function n(t){var e=t.align,i=void 0===e?"auto":e,n=t.cellOffset,r=t.cellSize,o=t.containerSize,s=t.currentOffset,f=n,h=f-o+r;switch(i){case"start":return f;case"end":return h;case"center":return f-(o-r)/2;default:return Math.max(h,Math.min(f,s))}}i.d(e,{A:function(){return n}})},68388:function(t,e,i){i.d(e,{qp:function(){return l},zW:function(){return a}});var n=i(15999),r=i.n(n),o=void 0,s=(o="undefined"!==typeof window?window:"undefined"!==typeof self?self:{}).requestAnimationFrame||o.webkitRequestAnimationFrame||o.mozRequestAnimationFrame||o.oRequestAnimationFrame||o.msRequestAnimationFrame||function(t){return o.setTimeout(t,1e3/60)},f=o.cancelAnimationFrame||o.webkitCancelAnimationFrame||o.mozCancelAnimationFrame||o.oCancelAnimationFrame||o.msCancelAnimationFrame||function(t){o.clearTimeout(t)},h=s,u=f,l=function(t){return u(t.id)},a=function(t,e){var i=void 0;r().resolve().then((function(){i=Date.now()}));var n={id:h((function r(){Date.now()-i>=e?t.call():n.id=h(r)}))};return n}},26026:function(t,e,i){function n(t,e){var n,r="undefined"!==typeof(n="undefined"!==typeof e?e:"undefined"!==typeof window?window:"undefined"!==typeof self?self:i.g).document&&n.document.attachEvent;if(!r){var o=function(){var t=n.requestAnimationFrame||n.mozRequestAnimationFrame||n.webkitRequestAnimationFrame||function(t){return n.setTimeout(t,20)};return function(e){return t(e)}}(),s=function(){var t=n.cancelAnimationFrame||n.mozCancelAnimationFrame||n.webkitCancelAnimationFrame||n.clearTimeout;return function(e){return t(e)}}(),f=function(t){var e=t.__resizeTriggers__,i=e.firstElementChild,n=e.lastElementChild,r=i.firstElementChild;n.scrollLeft=n.scrollWidth,n.scrollTop=n.scrollHeight,r.style.width=i.offsetWidth+1+"px",r.style.height=i.offsetHeight+1+"px",i.scrollLeft=i.scrollWidth,i.scrollTop=i.scrollHeight},h=function(t){if(!(t.target.className&&"function"===typeof t.target.className.indexOf&&t.target.className.indexOf("contract-trigger")<0&&t.target.className.indexOf("expand-trigger")<0)){var e=this;f(this),this.__resizeRAF__&&s(this.__resizeRAF__),this.__resizeRAF__=o((function(){(function(t){return t.offsetWidth!=t.__resizeLast__.width||t.offsetHeight!=t.__resizeLast__.height})(e)&&(e.__resizeLast__.width=e.offsetWidth,e.__resizeLast__.height=e.offsetHeight,e.__resizeListeners__.forEach((function(i){i.call(e,t)})))}))}},u=!1,l="",a="animationstart",c="Webkit Moz O ms".split(" "),g="webkitAnimationStart animationstart oAnimationStart MSAnimationStart".split(" "),d=n.document.createElement("fakeelement");if(void 0!==d.style.animationName&&(u=!0),!1===u)for(var v=0;v<c.length;v++)if(void 0!==d.style[c[v]+"AnimationName"]){l="-"+c[v].toLowerCase()+"-",a=g[v],u=!0;break}var _="resizeanim",m="@"+l+"keyframes "+_+" { from { opacity: 0; } to { opacity: 0; } } ",p=l+"animation: 1ms "+_+"; "}return{addResizeListener:function(e,i){if(r)e.attachEvent("onresize",i);else{if(!e.__resizeTriggers__){var o=e.ownerDocument,s=n.getComputedStyle(e);s&&"static"==s.position&&(e.style.position="relative"),function(e){if(!e.getElementById("detectElementResize")){var i=(m||"")+".resize-triggers { "+(p||"")+'visibility: hidden; opacity: 0; } .resize-triggers, .resize-triggers > div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; z-index: -1; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }',n=e.head||e.getElementsByTagName("head")[0],r=e.createElement("style");r.id="detectElementResize",r.type="text/css",null!=t&&r.setAttribute("nonce",t),r.styleSheet?r.styleSheet.cssText=i:r.appendChild(e.createTextNode(i)),n.appendChild(r)}}(o),e.__resizeLast__={},e.__resizeListeners__=[],(e.__resizeTriggers__=o.createElement("div")).className="resize-triggers",e.__resizeTriggers__.innerHTML='<div class="expand-trigger"><div></div></div><div class="contract-trigger"></div>',e.appendChild(e.__resizeTriggers__),f(e),e.addEventListener("scroll",h,!0),a&&(e.__resizeTriggers__.__animationListener__=function(t){t.animationName==_&&f(e)},e.__resizeTriggers__.addEventListener(a,e.__resizeTriggers__.__animationListener__))}e.__resizeListeners__.push(i)}},removeResizeListener:function(t,e){if(r)t.detachEvent("onresize",e);else if(t.__resizeListeners__.splice(t.__resizeListeners__.indexOf(e),1),!t.__resizeListeners__.length){t.removeEventListener("scroll",h,!0),t.__resizeTriggers__.__animationListener__&&(t.__resizeTriggers__.removeEventListener(a,t.__resizeTriggers__.__animationListener__),t.__resizeTriggers__.__animationListener__=null);try{t.__resizeTriggers__=!t.removeChild(t.__resizeTriggers__)}catch(i){}}}}}i.d(e,{A:function(){return n}})},77583:function(t,e,i){i.d(e,{A:function(){return y}});var n={ge:function(t,e,i,n,r){return"function"===typeof i?function(t,e,i,n,r){for(var o=i+1;e<=i;){var s=e+i>>>1;r(t[s],n)>=0?(o=s,i=s-1):e=s+1}return o}(t,void 0===n?0:0|n,void 0===r?t.length-1:0|r,e,i):function(t,e,i,n){for(var r=i+1;e<=i;){var o=e+i>>>1;t[o]>=n?(r=o,i=o-1):e=o+1}return r}(t,void 0===i?0:0|i,void 0===n?t.length-1:0|n,e)},gt:function(t,e,i,n,r){return"function"===typeof i?function(t,e,i,n,r){for(var o=i+1;e<=i;){var s=e+i>>>1;r(t[s],n)>0?(o=s,i=s-1):e=s+1}return o}(t,void 0===n?0:0|n,void 0===r?t.length-1:0|r,e,i):function(t,e,i,n){for(var r=i+1;e<=i;){var o=e+i>>>1;t[o]>n?(r=o,i=o-1):e=o+1}return r}(t,void 0===i?0:0|i,void 0===n?t.length-1:0|n,e)},lt:function(t,e,i,n,r){return"function"===typeof i?function(t,e,i,n,r){for(var o=e-1;e<=i;){var s=e+i>>>1;r(t[s],n)<0?(o=s,e=s+1):i=s-1}return o}(t,void 0===n?0:0|n,void 0===r?t.length-1:0|r,e,i):function(t,e,i,n){for(var r=e-1;e<=i;){var o=e+i>>>1;t[o]<n?(r=o,e=o+1):i=o-1}return r}(t,void 0===i?0:0|i,void 0===n?t.length-1:0|n,e)},le:function(t,e,i,n,r){return"function"===typeof i?function(t,e,i,n,r){for(var o=e-1;e<=i;){var s=e+i>>>1;r(t[s],n)<=0?(o=s,e=s+1):i=s-1}return o}(t,void 0===n?0:0|n,void 0===r?t.length-1:0|r,e,i):function(t,e,i,n){for(var r=e-1;e<=i;){var o=e+i>>>1;t[o]<=n?(r=o,e=o+1):i=o-1}return r}(t,void 0===i?0:0|i,void 0===n?t.length-1:0|n,e)},eq:function(t,e,i,n,r){return"function"===typeof i?function(t,e,i,n,r){for(;e<=i;){var o=e+i>>>1,s=r(t[o],n);if(0===s)return o;s<=0?e=o+1:i=o-1}return-1}(t,void 0===n?0:0|n,void 0===r?t.length-1:0|r,e,i):function(t,e,i,n){for(;e<=i;){var r=e+i>>>1,o=t[r];if(o===n)return r;o<=n?e=r+1:i=r-1}return-1}(t,void 0===i?0:0|i,void 0===n?t.length-1:0|n,e)}};function r(t,e,i,n,r){this.mid=t,this.left=e,this.right=i,this.leftPoints=n,this.rightPoints=r,this.count=(e?e.count:0)+(i?i.count:0)+n.length}var o=r.prototype;function s(t,e){t.mid=e.mid,t.left=e.left,t.right=e.right,t.leftPoints=e.leftPoints,t.rightPoints=e.rightPoints,t.count=e.count}function f(t,e){var i=_(e);t.mid=i.mid,t.left=i.left,t.right=i.right,t.leftPoints=i.leftPoints,t.rightPoints=i.rightPoints,t.count=i.count}function h(t,e){var i=t.intervals([]);i.push(e),f(t,i)}function u(t,e){var i=t.intervals([]),n=i.indexOf(e);return n<0?0:(i.splice(n,1),f(t,i),1)}function l(t,e,i){for(var n=0;n<t.length&&t[n][0]<=e;++n){var r=i(t[n]);if(r)return r}}function a(t,e,i){for(var n=t.length-1;n>=0&&t[n][1]>=e;--n){var r=i(t[n]);if(r)return r}}function c(t,e){for(var i=0;i<t.length;++i){var n=e(t[i]);if(n)return n}}function g(t,e){return t-e}function d(t,e){var i=t[0]-e[0];return i||t[1]-e[1]}function v(t,e){var i=t[1]-e[1];return i||t[0]-e[0]}function _(t){if(0===t.length)return null;for(var e=[],i=0;i<t.length;++i)e.push(t[i][0],t[i][1]);e.sort(g);var n=e[e.length>>1],o=[],s=[],f=[];for(i=0;i<t.length;++i){var h=t[i];h[1]<n?o.push(h):n<h[0]?s.push(h):f.push(h)}var u=f,l=f.slice();return u.sort(d),l.sort(v),new r(n,_(o),_(s),u,l)}function m(t){this.root=t}o.intervals=function(t){return t.push.apply(t,this.leftPoints),this.left&&this.left.intervals(t),this.right&&this.right.intervals(t),t},o.insert=function(t){var e=this.count-this.leftPoints.length;if(this.count+=1,t[1]<this.mid)this.left?4*(this.left.count+1)>3*(e+1)?h(this,t):this.left.insert(t):this.left=_([t]);else if(t[0]>this.mid)this.right?4*(this.right.count+1)>3*(e+1)?h(this,t):this.right.insert(t):this.right=_([t]);else{var i=n.ge(this.leftPoints,t,d),r=n.ge(this.rightPoints,t,v);this.leftPoints.splice(i,0,t),this.rightPoints.splice(r,0,t)}},o.remove=function(t){var e=this.count-this.leftPoints;if(t[1]<this.mid)return this.left?4*(this.right?this.right.count:0)>3*(e-1)?u(this,t):2===(f=this.left.remove(t))?(this.left=null,this.count-=1,1):(1===f&&(this.count-=1),f):0;if(t[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(e-1)?u(this,t):2===(f=this.right.remove(t))?(this.right=null,this.count-=1,1):(1===f&&(this.count-=1),f):0;if(1===this.count)return this.leftPoints[0]===t?2:0;if(1===this.leftPoints.length&&this.leftPoints[0]===t){if(this.left&&this.right){for(var i=this,r=this.left;r.right;)i=r,r=r.right;if(i===this)r.right=this.right;else{var o=this.left,f=this.right;i.count-=r.count,i.right=r.left,r.left=o,r.right=f}s(this,r),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?s(this,this.left):s(this,this.right);return 1}for(o=n.ge(this.leftPoints,t,d);o<this.leftPoints.length&&this.leftPoints[o][0]===t[0];++o)if(this.leftPoints[o]===t){this.count-=1,this.leftPoints.splice(o,1);for(f=n.ge(this.rightPoints,t,v);f<this.rightPoints.length&&this.rightPoints[f][1]===t[1];++f)if(this.rightPoints[f]===t)return this.rightPoints.splice(f,1),1}return 0},o.queryPoint=function(t,e){if(t<this.mid){if(this.left)if(i=this.left.queryPoint(t,e))return i;return l(this.leftPoints,t,e)}if(t>this.mid){var i;if(this.right)if(i=this.right.queryPoint(t,e))return i;return a(this.rightPoints,t,e)}return c(this.leftPoints,e)},o.queryInterval=function(t,e,i){var n;if(t<this.mid&&this.left&&(n=this.left.queryInterval(t,e,i)))return n;if(e>this.mid&&this.right&&(n=this.right.queryInterval(t,e,i)))return n;return e<this.mid?l(this.leftPoints,e,i):t>this.mid?a(this.rightPoints,t,i):c(this.leftPoints,i)};var p=m.prototype;function y(t){return t&&0!==t.length?new m(_(t)):new m(null)}p.insert=function(t){this.root?this.root.insert(t):this.root=new r(t[0],null,null,[t],[t])},p.remove=function(t){if(this.root){var e=this.root.remove(t);return 2===e&&(this.root=null),0!==e}return!1},p.queryPoint=function(t,e){if(this.root)return this.root.queryPoint(t,e)},p.queryInterval=function(t,e,i){if(t<=e&&this.root)return this.root.queryInterval(t,e,i)},Object.defineProperty(p,"count",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(p,"intervals",{get:function(){return this.root?this.root.intervals([]):[]}})},51951:function(t,e,i){i.d(e,{A:function(){return o}});var n,r=!("undefined"===typeof window||!window.document||!window.document.createElement);function o(t){if((!n&&0!==n||t)&&r){var e=document.createElement("div");e.style.position="absolute",e.style.top="-9999px",e.style.width="50px",e.style.height="50px",e.style.overflow="scroll",document.body.appendChild(e),n=e.offsetWidth-e.clientWidth,document.body.removeChild(e)}return n}}}]);
|