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 8023.75f1f3df.js.LICENSE.txt */
|
|
2
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[8023],{45810:function(e,t,r){r.d(t,{I9:function(){return s},N_:function(){return f},ok:function(){return p}});var n=r(31014),o=r(10837),a=r(17778);function u(){return u=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},u.apply(this,arguments)}function l(e,t){if(null==e)return{};var r,n,o={},a=Object.keys(e);for(n=0;n<a.length;n++)r=a[n],t.indexOf(r)>=0||(o[r]=e[r]);return o}function c(e){return void 0===e&&(e=""),new URLSearchParams("string"===typeof e||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce(((t,r)=>{let n=e[r];return t.concat(Array.isArray(n)?n.map((e=>[r,e])):[[r,n]])}),[]))}const i=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset"];function s(e){let{basename:t,children:r,window:u}=e,l=n.useRef();null==l.current&&(l.current=(0,a.TM)({window:u,v5Compat:!0}));let c=l.current,[i,s]=n.useState({action:c.action,location:c.location});return n.useLayoutEffect((()=>c.listen(s)),[c]),n.createElement(o.Ix,{basename:t,children:r,location:i.location,navigationType:i.action,navigator:c})}const f=n.forwardRef((function(e,t){let{onClick:r,relative:c,reloadDocument:s,replace:f,state:p,target:d,to:h,preventScrollReset:m}=e,y=l(e,i),v=(0,o.$P)(h,{relative:c}),b=function(e,t){let{target:r,replace:u,state:l,preventScrollReset:c,relative:i}=void 0===t?{}:t,s=(0,o.Zp)(),f=(0,o.zy)(),p=(0,o.x$)(e,{relative:i});return n.useCallback((t=>{if(function(e,t){return 0===e.button&&(!t||"_self"===t)&&!function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)}(t,r)){t.preventDefault();let r=void 0!==u?u:(0,a.AO)(f)===(0,a.AO)(p);s(e,{replace:r,state:l,preventScrollReset:c,relative:i})}}),[f,s,p,u,l,r,e,c,i])}(h,{replace:f,state:p,target:d,preventScrollReset:m,relative:c});return n.createElement("a",u({},y,{href:v,onClick:s?r:function(e){r&&r(e),e.defaultPrevented||b(e)},ref:t,target:d}))}));function p(e){let t=n.useRef(c(e)),r=(0,o.zy)(),a=n.useMemo((()=>function(e,t){let r=c(e);for(let n of t.keys())r.has(n)||t.getAll(n).forEach((e=>{r.append(n,e)}));return r}(r.search,t.current)),[r.search]),u=(0,o.Zp)(),l=n.useCallback(((e,t)=>{const r=c("function"===typeof e?e(a):e);u("?"+r,t)}),[u,a]);return[a,l]}},10837:function(e,t,r){var n;r.d(t,{$P:function(){return E},BV:function(){return N},C5:function(){return D},Ix:function(){return U},Zp:function(){return x},g:function(){return R},jb:function(){return y},qh:function(){return T},x$:function(){return w},zy:function(){return S}});var o=r(17778),a=r(31014);function u(){return u=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},u.apply(this,arguments)}const l="function"===typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e===1/t)||e!==e&&t!==t},{useState:c,useEffect:i,useLayoutEffect:s,useDebugValue:f}=n||(n=r.t(a,2));function p(e){const t=e.getSnapshot,r=e.value;try{const e=t();return!l(r,e)}catch(n){return!0}}"undefined"===typeof window||"undefined"===typeof window.document||window.document.createElement,(n||(n=r.t(a,2))).useSyncExternalStore;const d=a.createContext(null);const h=a.createContext(null);const m=a.createContext(null);const y=a.createContext(null);const v=a.createContext(null);const b=a.createContext({outlet:null,matches:[]});const g=a.createContext(null);function E(e,t){let{relative:r}=void 0===t?{}:t;_()||(0,o.V1)(!1);let{basename:n,navigator:u}=a.useContext(y),{hash:l,pathname:c,search:i}=w(e,{relative:r}),s=c;return"/"!==n&&(s="/"===c?n:(0,o.HS)([n,c])),u.createHref({pathname:s,search:i,hash:l})}function _(){return null!=a.useContext(v)}function S(){return _()||(0,o.V1)(!1),a.useContext(v).location}function C(e){return e.filter(((t,r)=>0===r||!t.route.index&&t.pathnameBase!==e[r-1].pathnameBase))}function x(){_()||(0,o.V1)(!1);let{basename:e,navigator:t}=a.useContext(y),{matches:r}=a.useContext(b),{pathname:n}=S(),u=JSON.stringify(C(r).map((e=>e.pathnameBase))),l=a.useRef(!1);return a.useEffect((()=>{l.current=!0})),a.useCallback((function(r,a){if(void 0===a&&(a={}),!l.current)return;if("number"===typeof r)return void t.go(r);let c=(0,o.Gh)(r,JSON.parse(u),n,"path"===a.relative);"/"!==e&&(c.pathname="/"===c.pathname?e:(0,o.HS)([e,c.pathname])),(a.replace?t.replace:t.push)(c,a.state,a)}),[e,t,u,n])}function R(){let{matches:e}=a.useContext(b),t=e[e.length-1];return t?t.params:{}}function w(e,t){let{relative:r}=void 0===t?{}:t,{matches:n}=a.useContext(b),{pathname:u}=S(),l=JSON.stringify(C(n).map((e=>e.pathnameBase)));return a.useMemo((()=>(0,o.Gh)(e,JSON.parse(l),u,"path"===r)),[e,l,u,r])}function k(){let e=function(){var e;let t=a.useContext(g),r=V($.UseRouteError),n=a.useContext(b),u=n.matches[n.matches.length-1];if(t)return t;return n||(0,o.V1)(!1),!u.route.id&&(0,o.V1)(!1),null==(e=r.errors)?void 0:e[u.route.id]}(),t=(0,o.pX)(e)?e.status+" "+e.statusText:e instanceof Error?e.message:JSON.stringify(e),r=e instanceof Error?e.stack:null,n="rgba(200,200,200, 0.5)",u={padding:"0.5rem",backgroundColor:n},l={padding:"2px 4px",backgroundColor:n};return a.createElement(a.Fragment,null,a.createElement("h2",null,"Unhandled Thrown Error!"),a.createElement("h3",{style:{fontStyle:"italic"}},t),r?a.createElement("pre",{style:u},r):null,a.createElement("p",null,"\ud83d\udcbf Hey developer \ud83d\udc4b"),a.createElement("p",null,"You can provide a way better UX than this when your app throws errors by providing your own\xa0",a.createElement("code",{style:l},"errorElement")," props on\xa0",a.createElement("code",{style:l},"<Route>")))}class O extends a.Component{constructor(e){super(e),this.state={location:e.location,error:e.error}}static getDerivedStateFromError(e){return{error:e}}static getDerivedStateFromProps(e,t){return t.location!==e.location?{error:e.error,location:e.location}:{error:e.error||t.error,location:t.location}}componentDidCatch(e,t){console.error("React Router caught the following error during render",e,t)}render(){return this.state.error?a.createElement(g.Provider,{value:this.state.error,children:this.props.component}):this.props.children}}function j(e){let{routeContext:t,match:r,children:n}=e,o=a.useContext(d);return o&&r.route.errorElement&&(o._deepestRenderedBoundaryId=r.route.id),a.createElement(b.Provider,{value:t},n)}function P(e,t,r){if(void 0===t&&(t=[]),null==e){if(null==r||!r.errors)return null;e=r.matches}let n=e,u=null==r?void 0:r.errors;if(null!=u){let e=n.findIndex((e=>e.route.id&&(null==u?void 0:u[e.route.id])));e>=0||(0,o.V1)(!1),n=n.slice(0,Math.min(n.length,e+1))}return n.reduceRight(((e,o,l)=>{let c=o.route.id?null==u?void 0:u[o.route.id]:null,i=r?o.route.errorElement||a.createElement(k,null):null,s=()=>a.createElement(j,{match:o,routeContext:{outlet:e,matches:t.concat(n.slice(0,l+1))}},c?i:void 0!==o.route.element?o.route.element:e);return r&&(o.route.errorElement||0===l)?a.createElement(O,{location:r.location,component:i,error:c,children:s()}):s()}),null)}var $;function V(e){let t=a.useContext(m);return t||(0,o.V1)(!1),t}!function(e){e.UseLoaderData="useLoaderData",e.UseActionData="useActionData",e.UseRouteError="useRouteError",e.UseNavigation="useNavigation",e.UseRouteLoaderData="useRouteLoaderData",e.UseMatches="useMatches",e.UseRevalidator="useRevalidator"}($||($={}));function D(e){let{to:t,replace:r,state:n,relative:u}=e;_()||(0,o.V1)(!1);let l=a.useContext(m),c=x();return a.useEffect((()=>{l&&"idle"!==l.navigation.state||c(t,{replace:r,state:n,relative:u})})),null}function T(e){(0,o.V1)(!1)}function U(e){let{basename:t="/",children:r=null,location:n,navigationType:u=o.rc.Pop,navigator:l,static:c=!1}=e;_()&&(0,o.V1)(!1);let i=t.replace(/^\/*/,"/"),s=a.useMemo((()=>({basename:i,navigator:l,static:c})),[i,l,c]);"string"===typeof n&&(n=(0,o.Rr)(n));let{pathname:f="/",search:p="",hash:d="",state:h=null,key:m="default"}=n,b=a.useMemo((()=>{let e=(0,o.pb)(f,i);return null==e?null:{pathname:e,search:p,hash:d,state:h,key:m}}),[i,f,p,d,h,m]);return null==b?null:a.createElement(y.Provider,{value:s},a.createElement(v.Provider,{children:r,value:{location:b,navigationType:u}}))}function N(e){let{children:t,location:r}=e,n=a.useContext(h);return function(e,t){_()||(0,o.V1)(!1);let r=a.useContext(m),{matches:n}=a.useContext(b),l=n[n.length-1],c=l?l.params:{},i=(l&&l.pathname,l?l.pathnameBase:"/");l&&l.route;let s,f=S();if(t){var p;let e="string"===typeof t?(0,o.Rr)(t):t;"/"===i||(null==(p=e.pathname)?void 0:p.startsWith(i))||(0,o.V1)(!1),s=e}else s=f;let d=s.pathname||"/",h="/"===i?d:d.slice(i.length)||"/",y=(0,o.ue)(e,{pathname:h}),g=P(y&&y.map((e=>Object.assign({},e,{params:Object.assign({},c,e.params),pathname:(0,o.HS)([i,e.pathname]),pathnameBase:"/"===e.pathnameBase?i:(0,o.HS)([i,e.pathnameBase])}))),n,r||void 0);return t?a.createElement(v.Provider,{value:{location:u({pathname:"/",search:"",hash:"",state:null,key:"default"},s),navigationType:o.rc.Pop}},g):g}(n&&!t?n.router.routes:A(t),r)}var I;!function(e){e[e.pending=0]="pending",e[e.success=1]="success",e[e.error=2]="error"}(I||(I={}));new Promise((()=>{}));a.Component;function A(e,t){void 0===t&&(t=[]);let r=[];return a.Children.forEach(e,((e,n)=>{if(!a.isValidElement(e))return;if(e.type===a.Fragment)return void r.push.apply(r,A(e.props.children,t));e.type!==T&&(0,o.V1)(!1);let u=[...t,n],l={id:e.props.id||u.join("-"),caseSensitive:e.props.caseSensitive,element:e.props.element,index:e.props.index,path:e.props.path,loader:e.props.loader,action:e.props.action,errorElement:e.props.errorElement,hasErrorBoundary:null!=e.props.errorElement,shouldRevalidate:e.props.shouldRevalidate,handle:e.props.handle};e.props.children&&(l.children=A(e.props.children,u)),r.push(l)})),r}},96011:function(e,t,r){r.d(t,{T0:function(){return u}});var n=r(31014),o=r(26589);var a=function(){var e=0,t=null;return{add:function(r){var n,a;0==e&&(t=function(){if(!document)return null;var e=document.createElement("style");e.type="text/css";var t=(0,o.m)();return t&&e.setAttribute("nonce",t),e}())&&(a=r,(n=t).styleSheet?n.styleSheet.cssText=a:n.appendChild(document.createTextNode(a)),function(e){(document.head||document.getElementsByTagName("head")[0]).appendChild(e)}(t)),e++},remove:function(){! --e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},u=function(){var e=function(){var e=a();return function(t,r){n.useEffect((function(){return e.add(t),function(){e.remove()}}),[t&&r])}}();return function(t){var r=t.styles,n=t.dynamic;return e(r,n),null}}},31830:function(e,t,r){var n=r(31014),o=Symbol.for("react.element"),a=Symbol.for("react.fragment"),u=Object.prototype.hasOwnProperty,l=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,c={key:!0,ref:!0,__self:!0,__source:!0};function i(e,t,r){var n,a={},i=null,s=null;for(n in void 0!==r&&(i=""+r),void 0!==t.key&&(i=""+t.key),void 0!==t.ref&&(s=t.ref),t)u.call(t,n)&&!c.hasOwnProperty(n)&&(a[n]=t[n]);if(e&&e.defaultProps)for(n in t=e.defaultProps)void 0===a[n]&&(a[n]=t[n]);return{$$typeof:o,type:e,key:i,ref:s,props:a,_owner:l.current}}t.Fragment=a,t.jsx=i,t.jsxs=i},48457:function(e,t){var r=Symbol.for("react.element"),n=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),u=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),c=Symbol.for("react.context"),i=Symbol.for("react.forward_ref"),s=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),d=Symbol.iterator;var h={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},m=Object.assign,y={};function v(e,t,r){this.props=e,this.context=t,this.refs=y,this.updater=r||h}function b(){}function g(e,t,r){this.props=e,this.context=t,this.refs=y,this.updater=r||h}v.prototype.isReactComponent={},v.prototype.setState=function(e,t){if("object"!==typeof e&&"function"!==typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},v.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},b.prototype=v.prototype;var E=g.prototype=new b;E.constructor=g,m(E,v.prototype),E.isPureReactComponent=!0;var _=Array.isArray,S=Object.prototype.hasOwnProperty,C={current:null},x={key:!0,ref:!0,__self:!0,__source:!0};function R(e,t,n){var o,a={},u=null,l=null;if(null!=t)for(o in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(u=""+t.key),t)S.call(t,o)&&!x.hasOwnProperty(o)&&(a[o]=t[o]);var c=arguments.length-2;if(1===c)a.children=n;else if(1<c){for(var i=Array(c),s=0;s<c;s++)i[s]=arguments[s+2];a.children=i}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===a[o]&&(a[o]=c[o]);return{$$typeof:r,type:e,key:u,ref:l,props:a,_owner:C.current}}function w(e){return"object"===typeof e&&null!==e&&e.$$typeof===r}var k=/\/+/g;function O(e,t){return"object"===typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function j(e,t,o,a,u){var l=typeof e;"undefined"!==l&&"boolean"!==l||(e=null);var c=!1;if(null===e)c=!0;else switch(l){case"string":case"number":c=!0;break;case"object":switch(e.$$typeof){case r:case n:c=!0}}if(c)return u=u(c=e),e=""===a?"."+O(c,0):a,_(u)?(o="",null!=e&&(o=e.replace(k,"$&/")+"/"),j(u,t,o,"",(function(e){return e}))):null!=u&&(w(u)&&(u=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(u,o+(!u.key||c&&c.key===u.key?"":(""+u.key).replace(k,"$&/")+"/")+e)),t.push(u)),1;if(c=0,a=""===a?".":a+":",_(e))for(var i=0;i<e.length;i++){var s=a+O(l=e[i],i);c+=j(l,t,o,s,u)}else if(s=function(e){return null===e||"object"!==typeof e?null:"function"===typeof(e=d&&e[d]||e["@@iterator"])?e:null}(e),"function"===typeof s)for(e=s.call(e),i=0;!(l=e.next()).done;)c+=j(l=l.value,t,o,s=a+O(l,i++),u);else if("object"===l)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return c}function P(e,t,r){if(null==e)return e;var n=[],o=0;return j(e,n,"","",(function(e){return t.call(r,e,o++)})),n}function $(e){if(-1===e._status){var t=e._result;(t=t()).then((function(t){0!==e._status&&-1!==e._status||(e._status=1,e._result=t)}),(function(t){0!==e._status&&-1!==e._status||(e._status=2,e._result=t)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var V={current:null},D={transition:null},T={ReactCurrentDispatcher:V,ReactCurrentBatchConfig:D,ReactCurrentOwner:C};t.Children={map:P,forEach:function(e,t,r){P(e,(function(){t.apply(this,arguments)}),r)},count:function(e){var t=0;return P(e,(function(){t++})),t},toArray:function(e){return P(e,(function(e){return e}))||[]},only:function(e){if(!w(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},t.Component=v,t.Fragment=o,t.Profiler=u,t.PureComponent=g,t.StrictMode=a,t.Suspense=s,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=T,t.cloneElement=function(e,t,n){if(null===e||void 0===e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var o=m({},e.props),a=e.key,u=e.ref,l=e._owner;if(null!=t){if(void 0!==t.ref&&(u=t.ref,l=C.current),void 0!==t.key&&(a=""+t.key),e.type&&e.type.defaultProps)var c=e.type.defaultProps;for(i in t)S.call(t,i)&&!x.hasOwnProperty(i)&&(o[i]=void 0===t[i]&&void 0!==c?c[i]:t[i])}var i=arguments.length-2;if(1===i)o.children=n;else if(1<i){c=Array(i);for(var s=0;s<i;s++)c[s]=arguments[s+2];o.children=c}return{$$typeof:r,type:e.type,key:a,ref:u,props:o,_owner:l}},t.createContext=function(e){return(e={$$typeof:c,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:l,_context:e},e.Consumer=e},t.createElement=R,t.createFactory=function(e){var t=R.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:i,render:e}},t.isValidElement=w,t.lazy=function(e){return{$$typeof:p,_payload:{_status:-1,_result:e},_init:$}},t.memo=function(e,t){return{$$typeof:f,type:e,compare:void 0===t?null:t}},t.startTransition=function(e){var t=D.transition;D.transition={};try{e()}finally{D.transition=t}},t.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},t.useCallback=function(e,t){return V.current.useCallback(e,t)},t.useContext=function(e){return V.current.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e){return V.current.useDeferredValue(e)},t.useEffect=function(e,t){return V.current.useEffect(e,t)},t.useId=function(){return V.current.useId()},t.useImperativeHandle=function(e,t,r){return V.current.useImperativeHandle(e,t,r)},t.useInsertionEffect=function(e,t){return V.current.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return V.current.useLayoutEffect(e,t)},t.useMemo=function(e,t){return V.current.useMemo(e,t)},t.useReducer=function(e,t,r){return V.current.useReducer(e,t,r)},t.useRef=function(e){return V.current.useRef(e)},t.useState=function(e){return V.current.useState(e)},t.useSyncExternalStore=function(e,t,r){return V.current.useSyncExternalStore(e,t,r)},t.useTransition=function(){return V.current.useTransition()},t.version="18.2.0"}}]);
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react-jsx-runtime.production.min.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* @license React
|
|
13
|
+
* react.production.min.js
|
|
14
|
+
*
|
|
15
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
16
|
+
*
|
|
17
|
+
* This source code is licensed under the MIT license found in the
|
|
18
|
+
* LICENSE file in the root directory of this source tree.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* React Router DOM v6.4.1
|
|
23
|
+
*
|
|
24
|
+
* Copyright (c) Remix Software Inc.
|
|
25
|
+
*
|
|
26
|
+
* This source code is licensed under the MIT license found in the
|
|
27
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
28
|
+
*
|
|
29
|
+
* @license MIT
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* React Router v6.4.1
|
|
34
|
+
*
|
|
35
|
+
* Copyright (c) Remix Software Inc.
|
|
36
|
+
*
|
|
37
|
+
* This source code is licensed under the MIT license found in the
|
|
38
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
39
|
+
*
|
|
40
|
+
* @license MIT
|
|
41
|
+
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[8123],{43466:function(e,t,n){n.d(t,{A:function(){return I}});var r=n(58168),a=n(89379),i=n(5544),o=n(80045),l=n(31014),s=n(45959),u=n.n(s),c=n(15749),p=void 0;function m(e,t){var n=e.prefixCls,i=e.invalidate,s=e.item,m=e.renderItem,h=e.responsive,d=e.registerSize,f=e.itemKey,g=e.className,v=e.style,y=e.children,x=e.display,C=e.order,N=e.component,P=void 0===N?"div":N,E=(0,o.A)(e,["prefixCls","invalidate","item","renderItem","responsive","registerSize","itemKey","className","style","children","display","order","component"]),S=h&&!x;function I(e){d(f,e)}l.useEffect((function(){return function(){I(null)}}),[]);var b,k=m&&s!==p?m(s):y;i||(b={opacity:S?0:1,height:S?0:p,overflowY:S?"hidden":p,order:h?C:p,pointerEvents:S?"none":p,position:S?"absolute":p});var A={};S&&(A["aria-hidden"]=!0);var w=l.createElement(P,(0,r.A)({className:u()(!i&&n,g),style:(0,a.A)((0,a.A)({},b),v)},A,E,{ref:t}),k);return h&&(w=l.createElement(c.A,{onResize:function(e){I(e.offsetWidth)}},w)),w}var h=l.forwardRef(m);h.displayName="Item";var d=h,f=n(70117);var g=function(e,t){var n=l.useContext(x);if(!n){var a=e.component,i=void 0===a?"div":a,s=(0,o.A)(e,["component"]);return l.createElement(i,(0,r.A)({},s,{ref:t}))}var c=n.className,p=(0,o.A)(n,["className"]),m=e.className,h=(0,o.A)(e,["className"]);return l.createElement(x.Provider,{value:null},l.createElement(d,(0,r.A)({ref:t,className:u()(c,m)},p,h)))},v=l.forwardRef(g);v.displayName="RawItem";var y=v,x=l.createContext(null),C="responsive",N="invalidate";function P(e){return"+ ".concat(e.length," ...")}function E(e,t){var n=e.prefixCls,s=void 0===n?"rc-overflow":n,p=e.data,m=void 0===p?[]:p,h=e.renderItem,g=e.renderRawItem,v=e.itemKey,y=e.itemWidth,E=void 0===y?10:y,S=e.ssr,I=e.style,b=e.className,k=e.maxCount,A=e.renderRest,w=e.renderRawRest,z=e.suffix,_=e.component,T=void 0===_?"div":_,K=e.itemComponent,R=e.onVisibleChange,V=(0,o.A)(e,["prefixCls","data","renderItem","renderRawItem","itemKey","itemWidth","ssr","style","className","maxCount","renderRest","renderRawRest","suffix","component","itemComponent","onVisibleChange"]),j=function(){var e=(0,l.useState)({}),t=(0,i.A)(e,2)[1],n=(0,l.useRef)([]),r=(0,l.useRef)(!1),a=0,o=0;return(0,l.useEffect)((function(){return function(){r.current=!0}}),[]),function(e){var i=a;return a+=1,n.current.length<i+1&&(n.current[i]=e),[n.current[i],function(e){n.current[i]="function"===typeof e?e(n.current[i]):e,f.A.cancel(o),o=(0,f.A)((function(){r.current||t({})}))}]}}(),O="full"===S,J=j(null),M=(0,i.A)(J,2),G=M[0],U=M[1],B=G||0,D=j(new Map),q=(0,i.A)(D,2),L=q[0],W=q[1],Q=j(0),F=(0,i.A)(Q,2),X=F[0],Y=F[1],H=j(0),Z=(0,i.A)(H,2),$=Z[0],ee=Z[1],te=j(0),ne=(0,i.A)(te,2),re=ne[0],ae=ne[1],ie=(0,l.useState)(null),oe=(0,i.A)(ie,2),le=oe[0],se=oe[1],ue=(0,l.useState)(null),ce=(0,i.A)(ue,2),pe=ce[0],me=ce[1],he=l.useMemo((function(){return null===pe&&O?Number.MAX_SAFE_INTEGER:pe||0}),[pe,G]),de=(0,l.useState)(!1),fe=(0,i.A)(de,2),ge=fe[0],ve=fe[1],ye="".concat(s,"-item"),xe=Math.max(X,$),Ce=m.length&&k===C,Ne=k===N,Pe=Ce||"number"===typeof k&&m.length>k,Ee=(0,l.useMemo)((function(){var e=m;return Ce?e=null===G&&O?m:m.slice(0,Math.min(m.length,B/E)):"number"===typeof k&&(e=m.slice(0,k)),e}),[m,E,G,k,Ce]),Se=(0,l.useMemo)((function(){return Ce?m.slice(he+1):m.slice(Ee.length)}),[m,Ee,Ce,he]),Ie=(0,l.useCallback)((function(e,t){var n;return"function"===typeof v?v(e):null!==(n=v&&(null===e||void 0===e?void 0:e[v]))&&void 0!==n?n:t}),[v]),be=(0,l.useCallback)(h||function(e){return e},[h]);function ke(e,t){me(e),t||(ve(e<m.length-1),null===R||void 0===R||R(e))}function Ae(e,t){W((function(n){var r=new Map(n);return null===t?r.delete(e):r.set(e,t),r}))}function we(e){return L.get(Ie(Ee[e],e))}l.useLayoutEffect((function(){if(B&&xe&&Ee){var e=re,t=Ee.length,n=t-1;if(!t)return ke(0),void se(null);for(var r=0;r<t;r+=1){var a=we(r);if(void 0===a){ke(r-1,!0);break}if(e+=a,0===n&&e<=B||r===n-1&&e+we(n)<=B){ke(n),se(null);break}if(e+xe>B){ke(r-1),se(e-a-re+$);break}}z&&we(0)+re>B&&se(null)}}),[B,L,$,re,Ie,Ee]);var ze=ge&&!!Se.length,_e={};null!==le&&Ce&&(_e={position:"absolute",left:le,top:0});var Te,Ke={prefixCls:ye,responsive:Ce,component:K,invalidate:Ne},Re=g?function(e,t){var n=Ie(e,t);return l.createElement(x.Provider,{key:n,value:(0,a.A)((0,a.A)({},Ke),{},{order:t,item:e,itemKey:n,registerSize:Ae,display:t<=he})},g(e,t))}:function(e,t){var n=Ie(e,t);return l.createElement(d,(0,r.A)({},Ke,{order:t,key:n,item:e,renderItem:be,itemKey:n,registerSize:Ae,display:t<=he}))},Ve={order:ze?he:Number.MAX_SAFE_INTEGER,className:"".concat(ye,"-rest"),registerSize:function(e,t){ee(t),Y($)},display:ze};if(w)w&&(Te=l.createElement(x.Provider,{value:(0,a.A)((0,a.A)({},Ke),Ve)},w(Se)));else{var je=A||P;Te=l.createElement(d,(0,r.A)({},Ke,Ve),"function"===typeof je?je(Se):je)}var Oe=l.createElement(T,(0,r.A)({className:u()(!Ne&&s,b),style:I,ref:t},V),Ee.map(Re),Pe?Te:null,z&&l.createElement(d,(0,r.A)({},Ke,{order:he,className:"".concat(ye,"-suffix"),registerSize:function(e,t){ae(t)},display:!0,style:_e}),z));return Ce&&(Oe=l.createElement(c.A,{onResize:function(e,t){U(t.clientWidth)}},Oe)),Oe}var S=l.forwardRef(E);S.displayName="Overflow",S.Item=y,S.RESPONSIVE=C,S.INVALIDATE=N;var I=S},50276:function(e,t,n){n.d(t,{A:function(){return P}});var r=n(58168),a=n(64467),i=n(89379),o=n(23029),l=n(92901),s=n(15361),u=n(88293),c=n(31014),p=n(45959),m=n.n(p),h=function(e){var t,n="".concat(e.rootPrefixCls,"-item"),r=m()(n,"".concat(n,"-").concat(e.page),(t={},(0,a.A)(t,"".concat(n,"-active"),e.active),(0,a.A)(t,e.className,!!e.className),(0,a.A)(t,"".concat(n,"-disabled"),!e.page),t));return c.createElement("li",{title:e.showTitle?e.page:null,className:r,onClick:function(){e.onClick(e.page)},onKeyPress:function(t){e.onKeyPress(t,e.onClick,e.page)},tabIndex:"0"},e.itemRender(e.page,"page",c.createElement("a",{rel:"nofollow"},e.page)))},d=13,f=38,g=40,v=function(e){(0,s.A)(n,e);var t=(0,u.A)(n);function n(){var e;(0,o.A)(this,n);for(var r=arguments.length,a=new Array(r),i=0;i<r;i++)a[i]=arguments[i];return(e=t.call.apply(t,[this].concat(a))).state={goInputText:""},e.buildOptionText=function(t){return"".concat(t," ").concat(e.props.locale.items_per_page)},e.changeSize=function(t){e.props.changeSize(Number(t))},e.handleChange=function(t){e.setState({goInputText:t.target.value})},e.handleBlur=function(t){var n=e.props,r=n.goButton,a=n.quickGo,i=n.rootPrefixCls,o=e.state.goInputText;r||""===o||(e.setState({goInputText:""}),t.relatedTarget&&(t.relatedTarget.className.indexOf("".concat(i,"-item-link"))>=0||t.relatedTarget.className.indexOf("".concat(i,"-item"))>=0)||a(e.getValidValue()))},e.go=function(t){""!==e.state.goInputText&&(t.keyCode!==d&&"click"!==t.type||(e.setState({goInputText:""}),e.props.quickGo(e.getValidValue())))},e}return(0,l.A)(n,[{key:"getValidValue",value:function(){var e=this.state.goInputText;return!e||isNaN(e)?void 0:Number(e)}},{key:"getPageSizeOptions",value:function(){var e=this.props,t=e.pageSize,n=e.pageSizeOptions;return n.some((function(e){return e.toString()===t.toString()}))?n:n.concat([t.toString()]).sort((function(e,t){return(isNaN(Number(e))?0:Number(e))-(isNaN(Number(t))?0:Number(t))}))}},{key:"render",value:function(){var e=this,t=this.props,n=t.pageSize,r=t.locale,a=t.rootPrefixCls,i=t.changeSize,o=t.quickGo,l=t.goButton,s=t.selectComponentClass,u=t.buildOptionText,p=t.selectPrefixCls,m=t.disabled,h=this.state.goInputText,d="".concat(a,"-options"),f=s,g=null,v=null,y=null;if(!i&&!o)return null;var x=this.getPageSizeOptions();if(i&&f){var C=x.map((function(t,n){return c.createElement(f.Option,{key:n,value:t.toString()},(u||e.buildOptionText)(t))}));g=c.createElement(f,{disabled:m,prefixCls:p,showSearch:!1,className:"".concat(d,"-size-changer"),optionLabelProp:"children",dropdownMatchSelectWidth:!1,value:(n||x[0]).toString(),onChange:this.changeSize,getPopupContainer:function(e){return e.parentNode}},C)}return o&&(l&&(y="boolean"===typeof l?c.createElement("button",{type:"button",onClick:this.go,onKeyUp:this.go,disabled:m,className:"".concat(d,"-quick-jumper-button")},r.jump_to_confirm):c.createElement("span",{onClick:this.go,onKeyUp:this.go},l)),v=c.createElement("div",{className:"".concat(d,"-quick-jumper")},r.jump_to,c.createElement("input",{disabled:m,type:"text",value:h,onChange:this.handleChange,onKeyUp:this.go,onBlur:this.handleBlur}),r.page,y)),c.createElement("li",{className:"".concat(d)},g,v)}}]),n}(c.Component);v.defaultProps={pageSizeOptions:["10","20","50","100"]};var y=v;function x(){}function C(e,t,n){var r="undefined"===typeof e?t.pageSize:e;return Math.floor((n.total-1)/r)+1}var N=function(e){(0,s.A)(n,e);var t=(0,u.A)(n);function n(e){var r;(0,o.A)(this,n),(r=t.call(this,e)).getJumpPrevPage=function(){return Math.max(1,r.state.current-(r.props.showLessItems?3:5))},r.getJumpNextPage=function(){return Math.min(C(void 0,r.state,r.props),r.state.current+(r.props.showLessItems?3:5))},r.getItemIcon=function(e,t){var n=r.props.prefixCls,a=e||c.createElement("button",{type:"button","aria-label":t,className:"".concat(n,"-item-link")});return"function"===typeof e&&(a=c.createElement(e,(0,i.A)({},r.props))),a},r.savePaginationNode=function(e){r.paginationNode=e},r.isValid=function(e){return"number"===typeof(t=e)&&isFinite(t)&&Math.floor(t)===t&&e!==r.state.current;var t},r.shouldDisplayQuickJumper=function(){var e=r.props,t=e.showQuickJumper,n=e.pageSize;return!(e.total<=n)&&t},r.handleKeyDown=function(e){e.keyCode!==f&&e.keyCode!==g||e.preventDefault()},r.handleKeyUp=function(e){var t=r.getValidValue(e);t!==r.state.currentInputValue&&r.setState({currentInputValue:t}),e.keyCode===d?r.handleChange(t):e.keyCode===f?r.handleChange(t-1):e.keyCode===g&&r.handleChange(t+1)},r.changePageSize=function(e){var t=r.state.current,n=C(e,r.state,r.props);t=t>n?n:t,0===n&&(t=r.state.current),"number"===typeof e&&("pageSize"in r.props||r.setState({pageSize:e}),"current"in r.props||r.setState({current:t,currentInputValue:t})),r.props.onShowSizeChange(t,e),"onChange"in r.props&&r.props.onChange&&r.props.onChange(t,e)},r.handleChange=function(e){var t=r.props.disabled,n=e;if(r.isValid(n)&&!t){var a=C(void 0,r.state,r.props);n>a?n=a:n<1&&(n=1),"current"in r.props||r.setState({current:n,currentInputValue:n});var i=r.state.pageSize;return r.props.onChange(n,i),n}return r.state.current},r.prev=function(){r.hasPrev()&&r.handleChange(r.state.current-1)},r.next=function(){r.hasNext()&&r.handleChange(r.state.current+1)},r.jumpPrev=function(){r.handleChange(r.getJumpPrevPage())},r.jumpNext=function(){r.handleChange(r.getJumpNextPage())},r.hasPrev=function(){return r.state.current>1},r.hasNext=function(){return r.state.current<C(void 0,r.state,r.props)},r.runIfEnter=function(e,t){if("Enter"===e.key||13===e.charCode){for(var n=arguments.length,r=new Array(n>2?n-2:0),a=2;a<n;a++)r[a-2]=arguments[a];t.apply(void 0,r)}},r.runIfEnterPrev=function(e){r.runIfEnter(e,r.prev)},r.runIfEnterNext=function(e){r.runIfEnter(e,r.next)},r.runIfEnterJumpPrev=function(e){r.runIfEnter(e,r.jumpPrev)},r.runIfEnterJumpNext=function(e){r.runIfEnter(e,r.jumpNext)},r.handleGoTO=function(e){e.keyCode!==d&&"click"!==e.type||r.handleChange(r.state.currentInputValue)};var a=e.onChange!==x;"current"in e&&!a&&console.warn("Warning: You provided a `current` prop to a Pagination component without an `onChange` handler. This will render a read-only component.");var l=e.defaultCurrent;"current"in e&&(l=e.current);var s=e.defaultPageSize;return"pageSize"in e&&(s=e.pageSize),l=Math.min(l,C(s,void 0,e)),r.state={current:l,currentInputValue:l,pageSize:s},r}return(0,l.A)(n,[{key:"componentDidUpdate",value:function(e,t){var n=this.props.prefixCls;if(t.current!==this.state.current&&this.paginationNode){var r=this.paginationNode.querySelector(".".concat(n,"-item-").concat(t.current));r&&document.activeElement===r&&r.blur()}}},{key:"getValidValue",value:function(e){var t=e.target.value,n=C(void 0,this.state,this.props),r=this.state.currentInputValue;return""===t?t:isNaN(Number(t))?r:t>=n?n:Number(t)}},{key:"getShowSizeChanger",value:function(){var e=this.props,t=e.showSizeChanger,n=e.total,r=e.totalBoundaryShowSizeChanger;return"undefined"!==typeof t?t:n>r}},{key:"renderPrev",value:function(e){var t=this.props,n=t.prevIcon,r=(0,t.itemRender)(e,"prev",this.getItemIcon(n,"prev page")),a=!this.hasPrev();return(0,c.isValidElement)(r)?(0,c.cloneElement)(r,{disabled:a}):r}},{key:"renderNext",value:function(e){var t=this.props,n=t.nextIcon,r=(0,t.itemRender)(e,"next",this.getItemIcon(n,"next page")),a=!this.hasNext();return(0,c.isValidElement)(r)?(0,c.cloneElement)(r,{disabled:a}):r}},{key:"render",value:function(){var e=this,t=this.props,n=t.prefixCls,i=t.className,o=t.style,l=t.disabled,s=t.hideOnSinglePage,u=t.total,p=t.locale,d=t.showQuickJumper,f=t.showLessItems,g=t.showTitle,v=t.showTotal,x=t.simple,N=t.itemRender,P=t.showPrevNextJumpers,E=t.jumpPrevIcon,S=t.jumpNextIcon,I=t.selectComponentClass,b=t.selectPrefixCls,k=t.pageSizeOptions,A=this.state,w=A.current,z=A.pageSize,_=A.currentInputValue;if(!0===s&&u<=z)return null;var T=C(void 0,this.state,this.props),K=[],R=null,V=null,j=null,O=null,J=null,M=d&&d.goButton,G=f?1:2,U=w-1>0?w-1:0,B=w+1<T?w+1:T,D=Object.keys(this.props).reduce((function(t,n){return"data-"!==n.substr(0,5)&&"aria-"!==n.substr(0,5)&&"role"!==n||(t[n]=e.props[n]),t}),{});if(x)return M&&(J="boolean"===typeof M?c.createElement("button",{type:"button",onClick:this.handleGoTO,onKeyUp:this.handleGoTO},p.jump_to_confirm):c.createElement("span",{onClick:this.handleGoTO,onKeyUp:this.handleGoTO},M),J=c.createElement("li",{title:g?"".concat(p.jump_to).concat(w,"/").concat(T):null,className:"".concat(n,"-simple-pager")},J)),c.createElement("ul",(0,r.A)({className:m()(n,"".concat(n,"-simple"),(0,a.A)({},"".concat(n,"-disabled"),l),i),style:o,ref:this.savePaginationNode},D),c.createElement("li",{title:g?p.prev_page:null,onClick:this.prev,tabIndex:this.hasPrev()?0:null,onKeyPress:this.runIfEnterPrev,className:m()("".concat(n,"-prev"),(0,a.A)({},"".concat(n,"-disabled"),!this.hasPrev())),"aria-disabled":!this.hasPrev()},this.renderPrev(U)),c.createElement("li",{title:g?"".concat(w,"/").concat(T):null,className:"".concat(n,"-simple-pager")},c.createElement("input",{type:"text",value:_,disabled:l,onKeyDown:this.handleKeyDown,onKeyUp:this.handleKeyUp,onChange:this.handleKeyUp,size:"3"}),c.createElement("span",{className:"".concat(n,"-slash")},"/"),T),c.createElement("li",{title:g?p.next_page:null,onClick:this.next,tabIndex:this.hasPrev()?0:null,onKeyPress:this.runIfEnterNext,className:m()("".concat(n,"-next"),(0,a.A)({},"".concat(n,"-disabled"),!this.hasNext())),"aria-disabled":!this.hasNext()},this.renderNext(B)),J);if(T<=3+2*G){var q={locale:p,rootPrefixCls:n,onClick:this.handleChange,onKeyPress:this.runIfEnter,showTitle:g,itemRender:N};T||K.push(c.createElement(h,(0,r.A)({},q,{key:"noPager",page:T,className:"".concat(n,"-disabled")})));for(var L=1;L<=T;L+=1){var W=w===L;K.push(c.createElement(h,(0,r.A)({},q,{key:L,page:L,active:W})))}}else{var Q=f?p.prev_3:p.prev_5,F=f?p.next_3:p.next_5;P&&(R=c.createElement("li",{title:g?Q:null,key:"prev",onClick:this.jumpPrev,tabIndex:"0",onKeyPress:this.runIfEnterJumpPrev,className:m()("".concat(n,"-jump-prev"),(0,a.A)({},"".concat(n,"-jump-prev-custom-icon"),!!E))},N(this.getJumpPrevPage(),"jump-prev",this.getItemIcon(E,"prev page"))),V=c.createElement("li",{title:g?F:null,key:"next",tabIndex:"0",onClick:this.jumpNext,onKeyPress:this.runIfEnterJumpNext,className:m()("".concat(n,"-jump-next"),(0,a.A)({},"".concat(n,"-jump-next-custom-icon"),!!S))},N(this.getJumpNextPage(),"jump-next",this.getItemIcon(S,"next page")))),O=c.createElement(h,{locale:p,last:!0,rootPrefixCls:n,onClick:this.handleChange,onKeyPress:this.runIfEnter,key:T,page:T,active:!1,showTitle:g,itemRender:N}),j=c.createElement(h,{locale:p,rootPrefixCls:n,onClick:this.handleChange,onKeyPress:this.runIfEnter,key:1,page:1,active:!1,showTitle:g,itemRender:N});var X=Math.max(1,w-G),Y=Math.min(w+G,T);w-1<=G&&(Y=1+2*G),T-w<=G&&(X=T-2*G);for(var H=X;H<=Y;H+=1){var Z=w===H;K.push(c.createElement(h,{locale:p,rootPrefixCls:n,onClick:this.handleChange,onKeyPress:this.runIfEnter,key:H,page:H,active:Z,showTitle:g,itemRender:N}))}w-1>=2*G&&3!==w&&(K[0]=(0,c.cloneElement)(K[0],{className:"".concat(n,"-item-after-jump-prev")}),K.unshift(R)),T-w>=2*G&&w!==T-2&&(K[K.length-1]=(0,c.cloneElement)(K[K.length-1],{className:"".concat(n,"-item-before-jump-next")}),K.push(V)),1!==X&&K.unshift(j),Y!==T&&K.push(O)}var $=null;v&&($=c.createElement("li",{className:"".concat(n,"-total-text")},v(u,[0===u?0:(w-1)*z+1,w*z>u?u:w*z])));var ee=!this.hasPrev()||!T,te=!this.hasNext()||!T;return c.createElement("ul",(0,r.A)({className:m()(n,i,(0,a.A)({},"".concat(n,"-disabled"),l)),style:o,unselectable:"unselectable",ref:this.savePaginationNode},D),$,c.createElement("li",{title:g?p.prev_page:null,onClick:this.prev,tabIndex:ee?null:0,onKeyPress:this.runIfEnterPrev,className:m()("".concat(n,"-prev"),(0,a.A)({},"".concat(n,"-disabled"),ee)),"aria-disabled":ee},this.renderPrev(U)),K,c.createElement("li",{title:g?p.next_page:null,onClick:this.next,tabIndex:te?null:0,onKeyPress:this.runIfEnterNext,className:m()("".concat(n,"-next"),(0,a.A)({},"".concat(n,"-disabled"),te)),"aria-disabled":te},this.renderNext(B)),c.createElement(y,{disabled:l,locale:p,rootPrefixCls:n,selectComponentClass:I,selectPrefixCls:b,changeSize:this.getShowSizeChanger()?this.changePageSize:null,current:w,pageSize:z,pageSizeOptions:k,quickGo:this.shouldDisplayQuickJumper()?this.handleChange:null,goButton:M}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n={};if("current"in e&&(n.current=e.current,e.current!==t.current&&(n.currentInputValue=n.current)),"pageSize"in e&&e.pageSize!==t.pageSize){var r=t.current,a=C(e.pageSize,t,e);r=r>a?a:r,"current"in e||(n.current=r,n.currentInputValue=r),n.pageSize=e.pageSize}return n}}]),n}(c.Component);N.defaultProps={defaultCurrent:1,total:0,defaultPageSize:10,onChange:x,className:"",selectPrefixCls:"rc-select",prefixCls:"rc-pagination",selectComponentClass:null,hideOnSinglePage:!1,showPrevNextJumpers:!0,showQuickJumper:!1,showLessItems:!1,showTitle:!0,onShowSizeChange:x,locale:{items_per_page:"\u6761/\u9875",jump_to:"\u8df3\u81f3",jump_to_confirm:"\u786e\u5b9a",page:"\u9875",prev_page:"\u4e0a\u4e00\u9875",next_page:"\u4e0b\u4e00\u9875",prev_5:"\u5411\u524d 5 \u9875",next_5:"\u5411\u540e 5 \u9875",prev_3:"\u5411\u524d 3 \u9875",next_3:"\u5411\u540e 3 \u9875"},style:{},itemRender:function(e,t,n){return n},totalBoundaryShowSizeChanger:50};var P=N},51955:function(e,t){t.A={items_per_page:"/ page",jump_to:"Go to",jump_to_confirm:"confirm",page:"",prev_page:"Previous Page",next_page:"Next Page",prev_5:"Previous 5 Pages",next_5:"Next 5 Pages",prev_3:"Previous 3 Pages",next_3:"Next 3 Pages"}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[813],{70813:function(n,r,t){t.r(r),t.d(r,{geoAiry:function(){return U},geoAiryRaw:function(){return H},geoAitoff:function(){return B},geoAitoffRaw:function(){return z},geoArmadillo:function(){return W},geoArmadilloRaw:function(){return j},geoAugust:function(){return D},geoAugustRaw:function(){return T},geoBaker:function(){return q},geoBakerRaw:function(){return V},geoBerghaus:function(){return J},geoBerghausRaw:function(){return K},geoBertin1953:function(){return tn},geoBertin1953Raw:function(){return rn},geoBoggs:function(){return vn},geoBoggsRaw:function(){return ln},geoBonne:function(){return dn},geoBonneRaw:function(){return hn},geoBottomley:function(){return yn},geoBottomleyRaw:function(){return wn},geoBromley:function(){return mn},geoBromleyRaw:function(){return An},geoChamberlin:function(){return Gn},geoChamberlinAfrica:function(){return xn},geoChamberlinRaw:function(){return kn},geoCollignon:function(){return Fn},geoCollignonRaw:function(){return Cn},geoCraig:function(){return Ln},geoCraigRaw:function(){return Nn},geoCraster:function(){return zn},geoCrasterRaw:function(){return Un},geoCylindricalEqualArea:function(){return jn},geoCylindricalEqualAreaRaw:function(){return Bn},geoCylindricalStereographic:function(){return Tn},geoCylindricalStereographicRaw:function(){return Wn},geoEckert1:function(){return In},geoEckert1Raw:function(){return Dn},geoEckert2:function(){return Vn},geoEckert2Raw:function(){return Qn},geoEckert3:function(){return _n},geoEckert3Raw:function(){return qn},geoEckert4:function(){return Jn},geoEckert4Raw:function(){return Kn},geoEckert5:function(){return Xn},geoEckert5Raw:function(){return On},geoEckert6:function(){return Zn},geoEckert6Raw:function(){return Yn},geoEisenlohr:function(){return rr},geoEisenlohrRaw:function(){return nr},geoFahey:function(){return ur},geoFaheyRaw:function(){return er},geoFoucaut:function(){return ir},geoFoucautRaw:function(){return or},geoFoucautSinusoidal:function(){return cr},geoFoucautSinusoidalRaw:function(){return ar},geoGilbert:function(){return sr},geoGingery:function(){return wr},geoGingeryRaw:function(){return pr},geoGinzburg4:function(){return mr},geoGinzburg4Raw:function(){return Ar},geoGinzburg5:function(){return Rr},geoGinzburg5Raw:function(){return br},geoGinzburg6:function(){return Er},geoGinzburg6Raw:function(){return Mr},geoGinzburg8:function(){return kr},geoGinzburg8Raw:function(){return Pr},geoGinzburg9:function(){return xr},geoGinzburg9Raw:function(){return Sr},geoGringorten:function(){return Fr},geoGringortenQuincuncial:function(){return ou},geoGringortenRaw:function(){return Cr},geoGuyou:function(){return Ur},geoGuyouRaw:function(){return Hr},geoHammer:function(){return Z},geoHammerRaw:function(){return X},geoHammerRetroazimuthal:function(){return Wr},geoHammerRetroazimuthalRaw:function(){return Br},geoHealpix:function(){return Jr},geoHealpixRaw:function(){return Vr},geoHill:function(){return Xr},geoHillRaw:function(){return Or},geoHomolosine:function(){return tt},geoHomolosineRaw:function(){return rt},geoHufnagel:function(){return ut},geoHufnagelRaw:function(){return et},geoHyperelliptical:function(){return ct},geoHyperellipticalRaw:function(){return at},geoInterrupt:function(){return vt},geoInterruptedBoggs:function(){return st},geoInterruptedHomolosine:function(){return ht},geoInterruptedMollweide:function(){return wt},geoInterruptedMollweideHemispheres:function(){return At},geoInterruptedQuarticAuthalic:function(){return ve},geoInterruptedSinuMollweide:function(){return bt},geoInterruptedSinusoidal:function(){return Mt},geoKavrayskiy7:function(){return Pt},geoKavrayskiy7Raw:function(){return Et},geoLagrange:function(){return St},geoLagrangeRaw:function(){return kt},geoLarrivee:function(){return Ct},geoLarriveeRaw:function(){return Gt},geoLaskowski:function(){return Nt},geoLaskowskiRaw:function(){return Ft},geoLittrow:function(){return Ht},geoLittrowRaw:function(){return Lt},geoLoximuthal:function(){return zt},geoLoximuthalRaw:function(){return Ut},geoMiller:function(){return jt},geoMillerRaw:function(){return Bt},geoModifiedStereographic:function(){return Xt},geoModifiedStereographicAlaska:function(){return qt},geoModifiedStereographicGs48:function(){return _t},geoModifiedStereographicGs50:function(){return Kt},geoModifiedStereographicLee:function(){return Ot},geoModifiedStereographicMiller:function(){return Jt},geoModifiedStereographicRaw:function(){return Wt},geoMollweide:function(){return an},geoMollweideRaw:function(){return on},geoMtFlatPolarParabolic:function(){return ne},geoMtFlatPolarParabolicRaw:function(){return $t},geoMtFlatPolarQuartic:function(){return te},geoMtFlatPolarQuarticRaw:function(){return re},geoMtFlatPolarSinusoidal:function(){return ue},geoMtFlatPolarSinusoidalRaw:function(){return ee},geoNaturalEarth:function(){return oe.A},geoNaturalEarth2:function(){return ae},geoNaturalEarth2Raw:function(){return ie},geoNaturalEarthRaw:function(){return oe.P},geoNellHammer:function(){return fe},geoNellHammerRaw:function(){return ce},geoNicolosi:function(){return se},geoNicolosiRaw:function(){return ge},geoPatterson:function(){return Ee},geoPattersonRaw:function(){return Me},geoPeirceQuincuncial:function(){return iu},geoPierceQuincuncial:function(){return iu},geoPolyconic:function(){return ke},geoPolyconicRaw:function(){return Pe},geoPolyhedral:function(){return Le},geoPolyhedralButterfly:function(){return Te},geoPolyhedralCollignon:function(){return Qe},geoPolyhedralWaterman:function(){return Ve},geoProject:function(){return Oe},geoQuantize:function(){return au},geoQuincuncial:function(){return uu},geoRectangularPolyconic:function(){return fu},geoRectangularPolyconicRaw:function(){return cu},geoRobinson:function(){return gu},geoRobinsonRaw:function(){return vu},geoSatellite:function(){return pu},geoSatelliteRaw:function(){return su},geoSinuMollweide:function(){return nt},geoSinuMollweideRaw:function(){return $r},geoSinusoidal:function(){return pn},geoSinusoidalRaw:function(){return sn},geoStitch:function(){return Lu},geoTimes:function(){return Uu},geoTimesRaw:function(){return Hu},geoTwoPointAzimuthal:function(){return Wu},geoTwoPointAzimuthalRaw:function(){return Bu},geoTwoPointAzimuthalUsa:function(){return ju},geoTwoPointEquidistant:function(){return Iu},geoTwoPointEquidistantRaw:function(){return Tu},geoTwoPointEquidistantUsa:function(){return Du},geoVanDerGrinten:function(){return Vu},geoVanDerGrinten2:function(){return _u},geoVanDerGrinten2Raw:function(){return qu},geoVanDerGrinten3:function(){return Ju},geoVanDerGrinten3Raw:function(){return Ku},geoVanDerGrinten4:function(){return Xu},geoVanDerGrinten4Raw:function(){return Ou},geoVanDerGrintenRaw:function(){return Qu},geoWagner:function(){return Zu},geoWagner4:function(){return eo},geoWagner4Raw:function(){return to},geoWagner6:function(){return oo},geoWagner6Raw:function(){return uo},geoWagner7:function(){return $u},geoWagnerRaw:function(){return Yu},geoWiechel:function(){return ao},geoWiechelRaw:function(){return io},geoWinkel3:function(){return fo},geoWinkel3Raw:function(){return co}});var e=t(58712),u=Math.abs,o=Math.atan,i=Math.atan2,a=(Math.ceil,Math.cos),c=Math.exp,f=Math.floor,l=Math.log,v=Math.max,g=Math.min,s=Math.pow,p=Math.round,h=Math.sign||function(n){return n>0?1:n<0?-1:0},d=Math.sin,w=Math.tan,y=1e-6,A=1e-12,m=Math.PI,b=m/2,R=m/4,M=Math.SQRT1_2,E=F(2),P=F(m),k=2*m,S=180/m,x=m/180;function G(n){return n>1?b:n<-1?-b:Math.asin(n)}function C(n){return n>1?0:n<-1?m:Math.acos(n)}function F(n){return n>0?Math.sqrt(n):0}function N(n){return(c(n)-c(-n))/2}function L(n){return(c(n)+c(-n))/2}function H(n){var r=w(n/2),t=2*l(a(n/2))/(r*r);function e(n,r){var e=a(n),u=a(r),o=d(r),i=u*e,c=-((1-i?l((1+i)/2)/(1-i):-.5)+t/(1+i));return[c*u*d(n),c*o]}return e.invert=function(r,e){var o,c=F(r*r+e*e),f=-n/2,v=50;if(!c)return[0,0];do{var g=f/2,s=a(g),p=d(g),h=p/s,w=-l(u(s));f-=o=(2/h*w-t*h-c)/(-w/(p*p)+1-t/(2*s*s))*(s<0?.7:1)}while(u(o)>y&&--v>0);var A=d(f);return[i(r*A,c*a(f)),G(e*A/c)]},e}function U(){var n=b,r=(0,e.U)(H),t=r(n);return t.radius=function(t){return arguments.length?r(n=t*x):n*S},t.scale(179.976).clipAngle(147)}function z(n,r){var t=a(r),e=function(n){return n?n/Math.sin(n):1}(C(t*a(n/=2)));return[2*t*d(n)*e,d(r)*e]}function B(){return(0,e.A)(z).scale(152.63)}function j(n){var r=d(n),t=a(n),e=n>=0?1:-1,o=w(e*n),c=(1+r-t)/2;function f(n,u){var f=a(u),l=a(n/=2);return[(1+f)*d(n),(e*u>-i(l,o)-.001?0:10*-e)+c+d(u)*t-(1+f)*r*l]}return f.invert=function(n,f){var l=0,v=0,g=50;do{var s=a(l),p=d(l),h=a(v),w=d(v),A=1+h,m=A*p-n,b=c+w*t-A*r*s-f,R=A*s/2,M=-p*w,E=r*A*p/2,P=t*h+r*s*w,k=M*E-P*R,S=(b*M-m*P)/k/2,x=(m*E-b*R)/k;u(x)>2&&(x/=2),l-=S,v-=x}while((u(S)>y||u(x)>y)&&--g>0);return e*v>-i(a(l),o)-.001?[2*l,v]:null},f}function W(){var n=20*x,r=n>=0?1:-1,t=w(r*n),u=(0,e.U)(j),o=u(n),c=o.stream;return o.parallel=function(e){return arguments.length?(t=w((r=(n=e*x)>=0?1:-1)*n),u(n)):n*S},o.stream=function(e){var u=o.rotate(),f=c(e),l=(o.rotate([0,0]),c(e)),v=o.precision();return o.rotate(u),f.sphere=function(){l.polygonStart(),l.lineStart();for(var e=-180*r;r*e<180;e+=90*r)l.point(e,90*r);if(n)for(;r*(e-=3*r*v)>=-180;)l.point(e,r*-i(a(e*x/2),t)*S);l.lineEnd(),l.polygonEnd()},f},o.scale(218.695).center([0,28.0974])}function T(n,r){var t=w(r/2),e=F(1-t*t),u=1+e*a(n/=2),o=d(n)*e/u,i=t/u,c=o*o,f=i*i;return[4/3*o*(3+c-3*f),4/3*i*(3+3*c-f)]}function D(){return(0,e.A)(T).scale(66.1603)}z.invert=function(n,r){if(!(n*n+4*r*r>m*m+y)){var t=n,e=r,o=25;do{var i,c=d(t),f=d(t/2),l=a(t/2),v=d(e),g=a(e),s=d(2*e),p=v*v,h=g*g,w=f*f,A=1-h*l*l,b=A?C(g*l)*F(i=1/A):i=0,R=2*b*g*f-n,M=b*v-r,E=i*(h*w+b*g*l*p),P=i*(.5*c*s-2*b*v*f),k=.25*i*(s*f-b*v*h*c),S=i*(p*l+b*w*g),x=P*k-S*E;if(!x)break;var G=(M*P-R*S)/x,N=(R*k-M*E)/x;t-=G,e-=N}while((u(G)>y||u(N)>y)&&--o>0);return[t,e]}},T.invert=function(n,r){if(r*=3/8,!(n*=3/8)&&u(r)>1)return null;var t=1+n*n+r*r,e=F((t-F(t*t-4*r*r))/2),o=G(e)/3,c=e?function(n){return l(n+F(n*n-1))}(u(r/e))/3:function(n){return l(n+F(n*n+1))}(u(n))/3,f=a(o),v=L(c),g=v*v-f*f;return[2*h(n)*i(N(c)*f,.25-g),2*h(r)*i(v*d(o),.25+g)]};var I=F(8),Q=l(1+E);function V(n,r){var t=u(r);return t<R?[n,l(w(R+r/2))]:[n*a(t)*(2*E-1/d(t)),h(r)*(2*E*(t-R)-l(w(t/2)))]}function q(){return(0,e.A)(V).scale(112.314)}V.invert=function(n,r){if((e=u(r))<Q)return[n,2*o(c(r))-b];var t,e,i=R,f=25;do{var v=a(i/2),g=w(i/2);i-=t=(I*(i-R)-l(g)-e)/(I-v*v/(2*g))}while(u(t)>A&&--f>0);return[n/(a(i)*(I-1/d(i))),h(r)*i]};var _=t(49447);function K(n){var r=2*m/n;function t(n,t){var e=(0,_.j)(n,t);if(u(n)>b){var o=i(e[1],e[0]),c=F(e[0]*e[0]+e[1]*e[1]),f=r*p((o-b)/r)+b,l=i(d(o-=f),2-a(o));o=f+G(m/c*d(l))-l,e[0]=c*a(o),e[1]=c*d(o)}return e}return t.invert=function(n,t){var e=F(n*n+t*t);if(e>b){var u=i(t,n),c=r*p((u-b)/r)+b,f=u>c?-1:1,l=e*a(c-u),v=1/w(f*C((l-m)/F(m*(m-2*l)+e*e)));u=c+2*o((v+f*F(v*v-3))/3),n=e*a(u),t=e*d(u)}return _.j.invert(n,t)},t}function J(){var n=5,r=(0,e.U)(K),t=r(n),u=t.stream,o=.01,c=-a(o*x),f=d(o*x);return t.lobes=function(t){return arguments.length?r(n=+t):n},t.stream=function(r){var e=t.rotate(),l=u(r),v=(t.rotate([0,0]),u(r));return t.rotate(e),l.sphere=function(){v.polygonStart(),v.lineStart();for(var r=0,t=360/n,e=2*m/n,u=90-180/n,l=b;r<n;++r,u-=t,l-=e)v.point(i(f*a(l),c)*S,G(f*d(l))*S),u<-90?(v.point(-90,-180-u-o),v.point(-90,-180-u+o)):(v.point(90,u+o),v.point(90,u-o));v.lineEnd(),v.polygonEnd()},l},t.scale(87.8076).center([0,17.1875]).clipAngle(179.999)}var O=t(18631);function X(n,r){if(arguments.length<2&&(r=n),1===r)return O.n;if(r===1/0)return Y;function t(t,e){var u=(0,O.n)(t/r,e);return u[0]*=n,u}return t.invert=function(t,e){var u=O.n.invert(t/n,e);return u[0]*=r,u},t}function Y(n,r){return[n*a(r)/a(r/=2),2*d(r)]}function Z(){var n=2,r=(0,e.U)(X),t=r(n);return t.coefficient=function(t){return arguments.length?r(n=+t):n},t.scale(169.529)}function $(n,r,t){var e,o,i,a=100;t=void 0===t?0:+t,r=+r;do{(o=n(t))===(i=n(t+y))&&(i=o+y),t-=e=-1*y*(o-r)/(o-i)}while(a-- >0&&u(e)>y);return a<0?NaN:t}function nn(n,r,t){return void 0===r&&(r=40),void 0===t&&(t=A),function(e,o,i,a){var c,f,l;i=void 0===i?0:+i,a=void 0===a?0:+a;for(var v=0;v<r;v++){var g=n(i,a),s=g[0]-e,p=g[1]-o;if(u(s)<t&&u(p)<t)break;var h=s*s+p*p;if(h>c)i-=f/=2,a-=l/=2;else{c=h;var d=(i>0?-1:1)*t,w=(a>0?-1:1)*t,y=n(i+d,a),A=n(i,a+w),m=(y[0]-g[0])/d,b=(y[1]-g[1])/d,R=(A[0]-g[0])/w,M=(A[1]-g[1])/w,E=M*m-b*R,P=(u(E)<.5?.5:1)/E;if(i+=f=(p*R-s*M)*P,a+=l=(s*b-p*m)*P,u(f)<t&&u(l)<t)break}}return[i,a]}}function rn(){var n=X(1.68,2);function r(r,t){if(r+t<-1.4){var e=(r-t+1.6)*(r+t+1.4)/8;r+=e,t-=.8*e*d(t+m/2)}var u=n(r,t),o=(1-a(r*t))/12;return u[1]<0&&(u[0]*=1+o),u[1]>0&&(u[1]*=1+o/1.5*u[0]*u[0]),u}return r.invert=nn(r),r}function tn(){return(0,e.A)(rn()).rotate([-16.5,-42]).scale(176.57).center([7.93,.09])}function en(n,r){var t,e=n*d(r),o=30;do{r-=t=(r+d(r)-e)/(1+a(r))}while(u(t)>y&&--o>0);return r/2}function un(n,r,t){function e(e,u){return[n*e*a(u=en(t,u)),r*d(u)]}return e.invert=function(e,u){return u=G(u/r),[e/(n*a(u)),G((2*u+d(2*u))/t)]},e}Y.invert=function(n,r){var t=2*G(r/2);return[n*a(t/2)/a(t),t]};var on=un(E/b,E,m);function an(){return(0,e.A)(on).scale(169.529)}var cn=2.00276,fn=1.11072;function ln(n,r){var t=en(m,r);return[cn*n/(1/a(r)+fn/a(t)),(r+E*d(t))/cn]}function vn(){return(0,e.A)(ln).scale(160.857)}function gn(n){var r=0,t=(0,e.U)(n),u=t(r);return u.parallel=function(n){return arguments.length?t(r=n*x):r*S},u}function sn(n,r){return[n*a(r),r]}function pn(){return(0,e.A)(sn).scale(152.63)}function hn(n){if(!n)return sn;var r=1/w(n);function t(t,e){var u=r+n-e,o=u?t*a(e)/u:u;return[u*d(o),r-u*a(o)]}return t.invert=function(t,e){var u=F(t*t+(e=r-e)*e),o=r+n-u;return[u/a(o)*i(t,e),o]},t}function dn(){return gn(hn).scale(123.082).center([0,26.1441]).parallel(45)}function wn(n){function r(r,t){var e=b-t,u=e?r*n*d(e)/e:e;return[e*d(u)/n,b-e*a(u)]}return r.invert=function(r,t){var e=r*n,u=b-t,o=F(e*e+u*u),a=i(e,u);return[(o?o/d(o):1)*a/n,b-o]},r}function yn(){var n=.5,r=(0,e.U)(wn),t=r(n);return t.fraction=function(t){return arguments.length?r(n=+t):n},t.scale(158.837)}ln.invert=function(n,r){var t,e,o=cn*r,i=r<0?-R:R,c=25;do{e=o-E*d(i),i-=t=(d(2*i)+2*i-m*d(e))/(2*a(2*i)+2+m*a(e)*E*a(i))}while(u(t)>y&&--c>0);return e=o-E*d(i),[n*(1/a(e)+fn/a(i))/cn,e]},sn.invert=function(n,r){return[n/a(r),r]};var An=un(1,4/m,m);function mn(){return(0,e.A)(An).scale(152.63)}var bn=t(47875),Rn=t(64377);function Mn(n,r,t,e,o,c){var f,l=a(c);if(u(n)>1||u(c)>1)f=C(t*o+r*e*l);else{var v=d(n/2),g=d(c/2);f=2*G(F(v*v+r*e*g*g))}return u(f)>y?[f,i(e*d(c),r*o-t*e*l)]:[0,0]}function En(n,r,t){return C((n*n+r*r-t*t)/(2*n*r))}function Pn(n){return n-2*m*f((n+m)/(2*m))}function kn(n,r,t){for(var e,u=[[n[0],n[1],d(n[1]),a(n[1])],[r[0],r[1],d(r[1]),a(r[1])],[t[0],t[1],d(t[1]),a(t[1])]],o=u[2],i=0;i<3;++i,o=e)e=u[i],o.v=Mn(e[1]-o[1],o[3],o[2],e[3],e[2],e[0]-o[0]),o.point=[0,0];var c=En(u[0].v[0],u[2].v[0],u[1].v[0]),f=En(u[0].v[0],u[1].v[0],u[2].v[0]),l=m-c;u[2].point[1]=0,u[0].point[0]=-(u[1].point[0]=u[0].v[0]/2);var v=[u[2].point[0]=u[0].point[0]+u[2].v[0]*a(c),2*(u[0].point[1]=u[1].point[1]=u[2].v[0]*d(c))];return function(n,r){var t,e=d(r),o=a(r),i=new Array(3);for(t=0;t<3;++t){var c=u[t];if(i[t]=Mn(r-c[1],c[3],c[2],o,e,n-c[0]),!i[t][0])return c.point;i[t][1]=Pn(i[t][1]-c.v[1])}var g=v.slice();for(t=0;t<3;++t){var s=2==t?0:t+1,p=En(u[t].v[0],i[t][0],i[s][0]);i[t][1]<0&&(p=-p),t?1==t?(p=f-p,g[0]-=i[t][0]*a(p),g[1]-=i[t][0]*d(p)):(p=l-p,g[0]+=i[t][0]*a(p),g[1]+=i[t][0]*d(p)):(g[0]+=i[t][0]*a(p),g[1]-=i[t][0]*d(p))}return g[0]/=3,g[1]/=3,g}}function Sn(n){return n[0]*=x,n[1]*=x,n}function xn(){return Gn([0,22],[45,22],[22.5,-22]).scale(380).center([22.5,2])}function Gn(n,r,t){var u=(0,bn.A)({type:"MultiPoint",coordinates:[n,r,t]}),o=[-u[0],-u[1]],i=(0,Rn.A)(o),a=kn(Sn(i(n)),Sn(i(r)),Sn(i(t)));a.invert=nn(a);var c=(0,e.A)(a).rotate(o),f=c.center;return delete c.rotate,c.center=function(n){return arguments.length?f(i(n)):i.invert(f())},c.clipAngle(90)}function Cn(n,r){var t=F(1-d(r));return[2/P*n*t,P*(1-t)]}function Fn(){return(0,e.A)(Cn).scale(95.6464).center([0,30])}function Nn(n){var r=w(n);function t(n,t){return[n,(n?n/d(n):1)*(d(t)*a(n)-r*a(t))]}return t.invert=r?function(n,t){n&&(t*=d(n)/n);var e=a(n);return[n,2*i(F(e*e+r*r-t*t)-e,r-t)]}:function(n,r){return[n,G(n?r*w(n)/n:r)]},t}function Ln(){return gn(Nn).scale(249.828).clipAngle(90)}Cn.invert=function(n,r){var t=(t=r/P-1)*t;return[t>0?n*F(m/t)/2:0,G(1-t)]};var Hn=F(3);function Un(n,r){return[Hn*n*(2*a(2*r/3)-1)/P,Hn*P*d(r/3)]}function zn(){return(0,e.A)(Un).scale(156.19)}function Bn(n){var r=a(n);function t(n,t){return[n*r,d(t)/r]}return t.invert=function(n,t){return[n/r,G(t*r)]},t}function jn(){return gn(Bn).parallel(38.58).scale(195.044)}function Wn(n){var r=a(n);function t(n,t){return[n*r,(1+r)*w(t/2)]}return t.invert=function(n,t){return[n/r,2*o(t/(1+r))]},t}function Tn(){return gn(Wn).scale(124.75)}function Dn(n,r){var t=F(8/(3*m));return[t*n*(1-u(r)/m),t*r]}function In(){return(0,e.A)(Dn).scale(165.664)}function Qn(n,r){var t=F(4-3*d(u(r)));return[2/F(6*m)*n*t,h(r)*F(2*m/3)*(2-t)]}function Vn(){return(0,e.A)(Qn).scale(165.664)}function qn(n,r){var t=F(m*(4+m));return[2/t*n*(1+F(1-4*r*r/(m*m))),4/t*r]}function _n(){return(0,e.A)(qn).scale(180.739)}function Kn(n,r){var t=(2+b)*d(r);r/=2;for(var e=0,o=1/0;e<10&&u(o)>y;e++){var i=a(r);r-=o=(r+d(r)*(i+2)-t)/(2*i*(1+i))}return[2/F(m*(4+m))*n*(1+a(r)),2*F(m/(4+m))*d(r)]}function Jn(){return(0,e.A)(Kn).scale(180.739)}function On(n,r){return[n*(1+a(r))/F(2+m),2*r/F(2+m)]}function Xn(){return(0,e.A)(On).scale(173.044)}function Yn(n,r){for(var t=(1+b)*d(r),e=0,o=1/0;e<10&&u(o)>y;e++)r-=o=(r+d(r)-t)/(1+a(r));return t=F(2+m),[n*(1+a(r))/t,2*r/t]}function Zn(){return(0,e.A)(Yn).scale(173.044)}Un.invert=function(n,r){var t=3*G(r/(Hn*P));return[P*n/(Hn*(2*a(2*t/3)-1)),t]},Dn.invert=function(n,r){var t=F(8/(3*m)),e=r/t;return[n/(t*(1-u(e)/m)),e]},Qn.invert=function(n,r){var t=2-u(r)/F(2*m/3);return[n*F(6*m)/(2*t),h(r)*G((4-t*t)/3)]},qn.invert=function(n,r){var t=F(m*(4+m))/2;return[n*t/(1+F(1-r*r*(4+m)/(4*m))),r*t/2]},Kn.invert=function(n,r){var t=r*F((4+m)/m)/2,e=G(t),u=a(e);return[n/(2/F(m*(4+m))*(1+u)),G((e+t*(u+2))/(2+b))]},On.invert=function(n,r){var t=F(2+m),e=r*t/2;return[t*n/(1+a(e)),e]},Yn.invert=function(n,r){var t=1+b,e=F(t/2);return[2*n*e/(1+a(r*=e)),G((r+d(r))/t)]};var $n=3+2*E;function nr(n,r){var t=d(n/=2),e=a(n),u=F(a(r)),i=a(r/=2),c=d(r)/(i+E*e*u),f=F(2/(1+c*c)),v=F((E*i+(e+t)*u)/(E*i+(e-t)*u));return[$n*(f*(v-1/v)-2*l(v)),$n*(f*c*(v+1/v)-2*o(c))]}function rr(){return(0,e.A)(nr).scale(62.5271)}nr.invert=function(n,r){if(!(t=T.invert(n/1.2,1.065*r)))return null;var t,e=t[0],i=t[1],c=20;n/=$n,r/=$n;do{var f=e/2,s=i/2,p=d(f),h=a(f),w=d(s),A=a(s),m=a(i),R=F(m),P=w/(A+E*h*R),k=P*P,S=F(2/(1+k)),x=(E*A+(h+p)*R)/(E*A+(h-p)*R),G=F(x),C=G-1/G,N=G+1/G,L=S*C-2*l(G)-n,H=S*P*N-2*o(P)-r,U=w&&M*R*p*k/w,z=(E*h*A+R)/(2*(A+E*h*R)*(A+E*h*R)*R),B=-.5*P*S*S*S,j=B*U,W=B*z,D=(D=2*A+E*R*(h-p))*D*G,I=(E*h*A*R+m)/D,Q=-E*p*w/(R*D),V=C*j-2*I/G+S*(I+I/x),q=C*W-2*Q/G+S*(Q+Q/x),_=P*N*j-2*U/(1+k)+S*N*U+S*P*(I-I/x),K=P*N*W-2*z/(1+k)+S*N*z+S*P*(Q-Q/x),J=q*_-K*V;if(!J)break;var O=(H*q-L*K)/J,X=(L*_-H*V)/J;e-=O,i=v(-b,g(b,i-X))}while((u(O)>y||u(X)>y)&&--c>0);return u(u(i)-b)<y?[0,i]:c&&[e,i]};var tr=a(35*x);function er(n,r){var t=w(r/2);return[n*tr*F(1-t*t),(1+tr)*t]}function ur(){return(0,e.A)(er).scale(137.152)}function or(n,r){var t=r/2,e=a(t);return[2*n/P*a(r)*e*e,P*w(t)]}function ir(){return(0,e.A)(or).scale(135.264)}function ar(n){var r=1-n,t=u(m,0)[0]-u(-m,0)[0],e=F(2*(u(0,b)[1]-u(0,-b)[1])/t);function u(t,e){var u=a(e),o=d(e);return[u/(r+n*u)*t,r*e+n*o]}function o(n,r){var t=u(n,r);return[t[0]*e,t[1]/e]}function i(n){return o(0,n)[1]}return o.invert=function(t,u){var o=$(i,u);return[t/e*(n+r/a(o)),o]},o}function cr(){var n=.5,r=(0,e.U)(ar),t=r(n);return t.alpha=function(t){return arguments.length?r(n=+t):n},t.scale(168.725)}er.invert=function(n,r){var t=r/(1+tr);return[n&&n/(tr*F(1-t*t)),2*o(t)]},or.invert=function(n,r){var t=o(r/P),e=a(t),u=2*t;return[n*P/2/(a(u)*e*e),u]};var fr=t(70587),lr=t(31857);function vr(n){return[n[0]/2,G(w(n[1]/2*x))*S]}function gr(n){return[2*n[0],2*o(d(n[1]*x))*S]}function sr(n){null==n&&(n=fr.A);var r=n(),t=(0,lr.A)().scale(S).precision(0).clipAngle(null).translate([0,0]);function e(n){return r(vr(n))}function u(n){e[n]=function(){return arguments.length?(r[n].apply(r,arguments),e):r[n]()}}return r.invert&&(e.invert=function(n){return gr(r.invert(n))}),e.stream=function(n){var e=r.stream(n),u=t.stream({point:function(n,r){e.point(n/2,G(w(-r/2*x))*S)},lineStart:function(){e.lineStart()},lineEnd:function(){e.lineEnd()},polygonStart:function(){e.polygonStart()},polygonEnd:function(){e.polygonEnd()}});return u.sphere=e.sphere,u},e.rotate=function(n){return arguments.length?(t.rotate(n),e):t.rotate()},e.center=function(n){return arguments.length?(r.center(vr(n)),e):gr(r.center())},u("angle"),u("clipAngle"),u("clipExtent"),u("fitExtent"),u("fitHeight"),u("fitSize"),u("fitWidth"),u("scale"),u("translate"),u("precision"),e.scale(249.5)}function pr(n,r){var t=2*m/r,e=n*n;function o(r,o){var c=(0,_.j)(r,o),f=c[0],l=c[1],v=f*f+l*l;if(v>e){var g=F(v),s=i(l,f),h=t*p(s/t),w=s-h,A=n*a(w),R=(n*d(w)-w*d(A))/(b-A),M=hr(w,R),E=(m-n)/dr(M,A,m);f=g;var P,k=50;do{f-=P=(n+dr(M,A,f)*E-g)/(M(f)*E)}while(u(P)>y&&--k>0);l=w*d(f),f<b&&(l-=R*(f-b));var S=d(h),x=a(h);c[0]=f*x-l*S,c[1]=f*S+l*x}return c}return o.invert=function(r,o){var c=r*r+o*o;if(c>e){var f=F(c),l=i(o,r),v=t*p(l/t),g=l-v;r=f*a(g),o=f*d(g);for(var s=r-b,h=d(r),w=o/h,y=r<b?1/0:0,R=10;;){var M=n*d(w),E=n*a(w),P=d(E),k=b-E,S=(M-w*P)/k,x=hr(w,S);if(u(y)<A||! --R)break;w-=y=(w*h-S*s-o)/(h-2*s*(k*(E+w*M*a(E)-P)-M*(M-w*P))/(k*k))}r=(f=n+dr(x,E,r)*(m-n)/dr(x,E,m))*a(l=v+w),o=f*d(l)}return _.j.invert(r,o)},o}function hr(n,r){return function(t){var e=n*a(t);return t<b&&(e-=r),F(1+e*e)}}function dr(n,r,t){for(var e=(t-r)/50,u=n(r)+n(t),o=1,i=r;o<50;++o)u+=2*n(i+=e);return.5*u*e}function wr(){var n=6,r=30*x,t=a(r),u=d(r),o=(0,e.U)(pr),c=o(r,n),f=c.stream,l=-a(.01*x),v=d(.01*x);return c.radius=function(e){return arguments.length?(t=a(r=e*x),u=d(r),o(r,n)):r*S},c.lobes=function(t){return arguments.length?o(r,n=+t):n},c.stream=function(r){var e=c.rotate(),o=f(r),g=(c.rotate([0,0]),f(r));return c.rotate(e),o.sphere=function(){g.polygonStart(),g.lineStart();for(var r=0,e=2*m/n,o=0;r<n;++r,o-=e)g.point(i(v*a(o),l)*S,G(v*d(o))*S),g.point(i(u*a(o-e/2),t)*S,G(u*d(o-e/2))*S);g.lineEnd(),g.polygonEnd()},o},c.rotate([90,-40]).scale(91.7095).clipAngle(179.999)}function yr(n,r,t,e,o,i,c,f){function l(u,l){if(!l)return[n*u/m,0];var v=l*l,g=n+v*(r+v*(t+v*e)),s=l*(o-1+v*(i-f+v*c)),p=(g*g+s*s)/(2*s),h=u*G(g/p)/m;return[p*d(h),l*(1+v*f)+p*(1-a(h))]}return arguments.length<8&&(f=0),l.invert=function(l,v){var g,s,p=m*l/n,h=v,w=50;do{var A=h*h,b=n+A*(r+A*(t+A*e)),R=h*(o-1+A*(i-f+A*c)),M=b*b+R*R,E=2*R,P=M/E,k=P*P,S=G(b/P)/m,x=p*S,C=b*b,N=(2*r+A*(4*t+6*A*e))*h,L=o+A*(3*i+5*A*c),H=(2*(b*N+R*(L-1))*E-M*(2*(L-1)))/(E*E),U=a(x),z=d(x),B=P*U,j=P*z,W=p/m*(1/F(1-C/k))*(N*P-b*H)/k,T=j-l,D=h*(1+A*f)+P-B-v,I=H*z+B*W,Q=B*S,V=1+H-(H*U-j*W),q=j*S,_=I*q-V*Q;if(!_)break;p-=g=(D*I-T*V)/_,h-=s=(T*q-D*Q)/_}while((u(g)>y||u(s)>y)&&--w>0);return[p,h]},l}var Ar=yr(2.8284,-1.6988,.75432,-.18071,1.76003,-.38914,.042555);function mr(){return(0,e.A)(Ar).scale(149.995)}var br=yr(2.583819,-.835827,.170354,-.038094,1.543313,-.411435,.082742);function Rr(){return(0,e.A)(br).scale(153.93)}var Mr=yr(5/6*m,-.62636,-.0344,0,1.3493,-.05524,0,.045);function Er(){return(0,e.A)(Mr).scale(130.945)}function Pr(n,r){var t=n*n,e=r*r;return[n*(1-.162388*e)*(.87-952426e-9*t*t),r*(1+e/12)]}function kr(){return(0,e.A)(Pr).scale(131.747)}Pr.invert=function(n,r){var t,e=n,o=r,i=50;do{var a=o*o;o-=t=(o*(1+a/12)-r)/(1+a/4)}while(u(t)>y&&--i>0);i=50,n/=1-.162388*a;do{var c=(c=e*e)*c;e-=t=(e*(.87-952426e-9*c)-n)/(.87-.00476213*c)}while(u(t)>y&&--i>0);return[e,o]};var Sr=yr(2.6516,-.76534,.19123,-.047094,1.36289,-.13965,.031762);function xr(){return(0,e.A)(Sr).scale(131.087)}function Gr(n){var r=n(b,0)[0]-n(-b,0)[0];function t(t,e){var u=t>0?-.5:.5,o=n(t+u*m,e);return o[0]-=u*r,o}return n.invert&&(t.invert=function(t,e){var u=t>0?-.5:.5,o=n.invert(t+u*r,e),i=o[0]-u*m;return i<-m?i+=2*m:i>m&&(i-=2*m),o[0]=i,o}),t}function Cr(n,r){var t=h(n),e=h(r),o=a(r),c=a(n)*o,f=d(n)*o,l=d(e*r);n=u(i(f,l)),r=G(c),u(n-b)>y&&(n%=b);var v=function(n,r){if(r===b)return[0,0];var t,e,o=d(r),i=o*o,c=i*i,f=1+c,l=1+3*c,v=1-c,g=G(1/F(f)),s=v+i*f*g,p=(1-o)/s,h=F(p),w=p*f,A=F(w),R=h*v;if(0===n)return[0,-(R+i*A)];var M,E=a(r),P=1/E,k=2*o*E,S=(-3*i+g*l)*k,x=(-s*E-(1-o)*S)/(s*s),C=i*f*x+p*l*k,N=-P*k,L=-P*C,H=-2*P*(v*(.5*x/h)-2*i*h*k),U=4*n/m;if(n>.222*m||r<m/4&&n>.175*m){if(t=(R+i*F(w*(1+c)-R*R))/(1+c),n>m/4)return[t,t];var z=t,B=.5*t;t=.5*(B+z),e=50;do{var j=t*(H+N*F(w-t*t))+L*G(t/A)-U;if(!j)break;j<0?B=t:z=t,t=.5*(B+z)}while(u(z-B)>y&&--e>0)}else{t=y,e=25;do{var W=t*t,T=F(w-W),D=H+N*T,I=t*D+L*G(t/A)-U;t-=M=T?I/(D+(L-N*W)/T):0}while(u(M)>y&&--e>0)}return[t,-R-i*F(w-t*t)]}(n>m/4?b-n:n,r);return n>m/4&&(l=v[0],v[0]=-v[1],v[1]=-l),v[0]*=t,v[1]*=-e,v}function Fr(){return(0,e.A)(Gr(Cr)).scale(239.75)}function Nr(n,r){var t,e,i,f,l,v;if(r<y)return[(f=d(n))-(t=r*(n-f*(e=a(n)))/4)*e,e+t*f,1-r*f*f/2,n-t];if(r>=1-y)return t=(1-r)/4,i=1/(e=L(n)),[(f=((v=c(2*(v=n)))-1)/(v+1))+t*((l=e*N(n))-n)/(e*e),i-t*f*i*(l-n),i+t*f*i*(l+n),2*o(c(n))-b+t*(l-n)/e];var g=[1,0,0,0,0,0,0,0,0],s=[F(r),0,0,0,0,0,0,0,0],p=0;for(e=F(1-r),l=1;u(s[p]/g[p])>y&&p<8;)t=g[p++],s[p]=(t-e)/2,g[p]=(t+e)/2,e=F(t*e),l*=2;i=l*g[p]*n;do{i=(G(f=s[p]*d(e=i)/g[p])+i)/2}while(--p);return[d(i),f=a(i),f/a(i-e),i]}function Lr(n,r){if(!r)return n;if(1===r)return l(w(n/2+R));for(var t=1,e=F(1-r),i=F(r),a=0;u(i)>y;a++){if(n%m){var c=o(e*w(n)/t);c<0&&(c+=m),n+=c+~~(n/m)*m}else n+=n;i=(t+e)/2,e=F(t*e),i=((t=i)-e)/2}return n/(s(2,a)*t)}function Hr(n,r){var t=(E-1)/(E+1),e=F(1-t*t),f=Lr(b,e*e),v=l(w(m/4+u(r)/2)),g=c(-1*v)/F(t),s=function(n,r){var t=n*n,e=r+1,u=1-t-r*r;return[.5*((n>=0?b:-b)-i(u,2*n)),-.25*l(u*u+4*t)+.5*l(e*e+t)]}(g*a(-1*n),g*d(-1*n)),p=function(n,r,t){var e=u(n),i=N(u(r));if(e){var a=1/d(e),c=1/(w(e)*w(e)),f=-(c+t*(i*i*a*a)-1+t),l=(-f+F(f*f-(t-1)*c*4))/2;return[Lr(o(1/F(l)),t)*h(n),Lr(o(F((l/c-1)/t)),1-t)*h(r)]}return[0,Lr(o(i),1-t)*h(r)]}(s[0],s[1],e*e);return[-p[1],(r>=0?1:-1)*(.5*f-p[0])]}function Ur(){return(0,e.A)(Gr(Hr)).scale(151.496)}Cr.invert=function(n,r){u(n)>1&&(n=2*h(n)-n),u(r)>1&&(r=2*h(r)-r);var t=h(n),e=h(r),o=-t*n,c=-e*r,f=c/o<1,l=function(n,r){var t=0,e=1,o=.5,i=50;for(;;){var c=o*o,f=F(o),l=G(1/F(1+c)),v=1-c+o*(1+c)*l,g=(1-f)/v,s=F(g),p=g*(1+c),h=s*(1-c),d=F(p-n*n),w=r+h+o*d;if(u(e-t)<A||0===--i||0===w)break;w>0?t=o:e=o,o=.5*(t+e)}if(!i)return null;var y=G(f),b=a(y),R=1/b,M=2*f*b,E=(-v*b-(-3*o+l*(1+3*c))*M*(1-f))/(v*v),P=.5*E/s,k=(1-c)*P-2*o*s*M;return[m/4*(n*(-2*R*k+-R*M*d)+-R*(o*(1+c)*E+g*(1+3*c)*M)*G(n/F(p))),y]}(f?c:o,f?o:c),v=l[0],g=l[1],s=a(g);return f&&(v=-b-v),[t*(i(d(v)*s,-d(g))+m),e*G(a(v)*s)]},Hr.invert=function(n,r){var t=(E-1)/(E+1),e=F(1-t*t),u=function(n,r,t){var e,u,o;return n?(e=Nr(n,t),r?(o=(u=Nr(r,1-t))[1]*u[1]+t*e[0]*e[0]*u[0]*u[0],[[e[0]*u[2]/o,e[1]*e[2]*u[0]*u[1]/o],[e[1]*u[1]/o,-e[0]*e[2]*u[0]*u[2]/o],[e[2]*u[1]*u[2]/o,-t*e[0]*e[1]*u[0]/o]]):[[e[0],0],[e[1],0],[e[2],0]]):[[0,(u=Nr(r,1-t))[0]/u[1]],[1/u[1],0],[u[2]/u[1],0]]}(.5*Lr(b,e*e)-r,-n,e*e),a=function(n,r){var t=r[0]*r[0]+r[1]*r[1];return[(n[0]*r[0]+n[1]*r[1])/t,(n[1]*r[0]-n[0]*r[1])/t]}(u[0],u[1]);return[i(a[1],a[0])/-1,2*o(c(-.5*l(t*a[0]*a[0]+t*a[1]*a[1])))-b]};var zr=t(19699);function Br(n){var r=d(n),t=a(n),e=jr(n);function o(n,o){var i=e(n,o);n=i[0],o=i[1];var c=d(o),f=a(o),l=a(n),v=C(r*c+t*f*l),g=d(v),s=u(g)>y?v/g:1;return[s*t*d(n),(u(n)>b?s:-s)*(r*f-t*c*l)]}return e.invert=jr(-n),o.invert=function(n,t){var u=F(n*n+t*t),o=-d(u),c=a(u),f=u*c,l=-t*o,v=u*r,g=F(f*f+l*l-v*v),s=i(f*v+l*g,l*v-f*g),p=(u>b?-1:1)*i(n*o,u*a(s)*c+t*d(s)*o);return e.invert(p,s)},o}function jr(n){var r=d(n),t=a(n);return function(n,e){var u=a(e),o=a(n)*u,c=d(n)*u,f=d(e);return[i(c,o*t-f*r),G(f*t+o*r)]}}function Wr(){var n=0,r=(0,e.U)(Br),t=r(n),u=t.rotate,o=t.stream,i=(0,zr.A)();return t.parallel=function(e){if(!arguments.length)return n*S;var u=t.rotate();return r(n=e*x).rotate(u)},t.rotate=function(r){return arguments.length?(u.call(t,[r[0],r[1]-n*S]),i.center([-r[0],-r[1]]),t):((r=u.call(t))[1]+=n*S,r)},t.stream=function(n){return(n=o(n)).sphere=function(){n.polygonStart();var r,t=i.radius(89.99)().coordinates[0],e=t.length-1,u=-1;for(n.lineStart();++u<e;)n.point((r=t[u])[0],r[1]);for(n.lineEnd(),e=(t=i.radius(90.01)().coordinates[0]).length-1,n.lineStart();--u>=0;)n.point((r=t[u])[0],r[1]);n.lineEnd(),n.polygonEnd()},n},t.scale(79.4187).parallel(45).clipAngle(179.999)}var Tr=t(19322),Dr=t(5543),Ir=G(1-1/3)*S,Qr=Bn(0);function Vr(n){var r=Ir*x,t=Cn(m,r)[0]-Cn(-m,r)[0],e=Qr(0,r)[1],o=Cn(0,r)[1],i=P-o,a=k/n,c=4/k,l=e+i*i*4/k;function s(s,p){var h,d=u(p);if(d>r){var w=g(n-1,v(0,f((s+m)/a)));(h=Cn(s+=m*(n-1)/n-w*a,d))[0]=h[0]*k/t-k*(n-1)/(2*n)+w*k/n,h[1]=e+4*(h[1]-o)*i/k,p<0&&(h[1]=-h[1])}else h=Qr(s,p);return h[0]*=c,h[1]/=l,h}return s.invert=function(r,s){r/=c;var p=u(s*=l);if(p>e){var h=g(n-1,v(0,f((r+m)/a)));r=(r+m*(n-1)/n-h*a)*t/k;var d=Cn.invert(r,.25*(p-e)*k/i+o);return d[0]-=m*(n-1)/n-h*a,s<0&&(d[1]=-d[1]),d}return Qr.invert(r,s)},s}function qr(n,r){return[n,1&r?90-y:Ir]}function _r(n,r){return[n,1&r?-90+y:-Ir]}function Kr(n){return[n[0]*(1-y),n[1]]}function Jr(){var n=4,r=(0,e.U)(Vr),t=r(n),u=t.stream;return t.lobes=function(t){return arguments.length?r(n=+t):n},t.stream=function(r){var e=t.rotate(),o=u(r),i=(t.rotate([0,0]),u(r));return t.rotate(e),o.sphere=function(){(0,Dr.A)(function(n){var r=[].concat((0,Tr.y1)(-180,180+n/2,n).map(qr),(0,Tr.y1)(180,-180-n/2,-n).map(_r));return{type:"Polygon",coordinates:[180===n?r.map(Kr):r]}}(180/n),i)},o},t.scale(239.75)}function Or(n){var r,t=1+n,e=G(d(1/t)),o=2*F(m/(r=m+4*e*t)),c=.5*o*(t+F(n*(2+n))),f=n*n,l=t*t;function v(v,g){var s,p,h=1-d(g);if(h&&h<2){var w,y=b-g,R=25;do{var M=d(y),E=a(y),P=e+i(M,t-E),k=1+l-2*t*E;y-=w=(y-f*e-t*M+k*P-.5*h*r)/(2*t*M*P)}while(u(w)>A&&--R>0);s=o*F(k),p=v*P/m}else s=o*(n+h),p=v*e/m;return[s*d(p),c-s*a(p)]}return v.invert=function(n,u){var a=n*n+(u-=c)*u,v=(1+l-a/(o*o))/(2*t),g=C(v),s=d(g),p=e+i(s,t-v);return[G(n/F(a))*m/p,G(1-2*(g-f*e-t*s+(1+l-2*t*v)*p)/r)]},v}function Xr(){var n=1,r=(0,e.U)(Or),t=r(n);return t.ratio=function(t){return arguments.length?r(n=+t):n},t.scale(167.774).center([0,18.67])}var Yr=.7109889596207567,Zr=.0528035274542;function $r(n,r){return r>-Yr?((n=on(n,r))[1]+=Zr,n):sn(n,r)}function nt(){return(0,e.A)($r).rotate([-20,-55]).scale(164.263).center([0,-5.4036])}function rt(n,r){return u(r)>Yr?((n=on(n,r))[1]-=r>0?Zr:-Zr,n):sn(n,r)}function tt(){return(0,e.A)(rt).scale(152.63)}function et(n,r,t,e){var u=F(4*m/(2*t+(1+n-r/2)*d(2*t)+(n+r)/2*d(4*t)+r/2*d(6*t))),o=F(e*d(t)*F((1+n*a(2*t)+r*a(4*t))/(1+n+r))),i=t*f(1);function c(t){return F(1+n*a(2*t)+r*a(4*t))}function f(e){var u=e*t;return(2*u+(1+n-r/2)*d(2*u)+(n+r)/2*d(4*u)+r/2*d(6*u))/t}function l(n){return c(n)*d(n)}var v=function(n,r){var e=t*$(f,i*d(r)/t,r/m);isNaN(e)&&(e=t*h(r));var l=u*c(e);return[l*o*n/m*a(e),l/o*d(e)]};return v.invert=function(n,r){var e=$(l,r*o/u);return[n*m/(a(e)*u*o*c(e)),G(t*f(e/t)/i)]},0===t&&(u=F(e/m),(v=function(n,r){return[n*u,d(r)/u]}).invert=function(n,r){return[n/u,G(r*u)]}),v}function ut(){var n=1,r=0,t=45*x,u=2,o=(0,e.U)(et),i=o(n,r,t,u);return i.a=function(e){return arguments.length?o(n=+e,r,t,u):n},i.b=function(e){return arguments.length?o(n,r=+e,t,u):r},i.psiMax=function(e){return arguments.length?o(n,r,t=+e*x,u):t*S},i.ratio=function(e){return arguments.length?o(n,r,t,u=+e):u},i.scale(180.739)}function ot(n,r,t,e,u,o,i,a,c,f,l){if(l.nanEncountered)return NaN;var v,g,s,p,h,d,w,y,A,m;if(g=n(r+.25*(v=t-r)),s=n(t-.25*v),isNaN(g))l.nanEncountered=!0;else{if(!isNaN(s))return m=((d=(p=v*(e+4*g+u)/12)+(h=v*(u+4*s+o)/12))-i)/15,f>c?(l.maxDepthCount++,d+m):Math.abs(m)<a?d+m:(y=ot(n,r,w=r+.5*v,e,g,u,p,.5*a,c,f+1,l),isNaN(y)?(l.nanEncountered=!0,NaN):(A=ot(n,w,t,u,s,o,h,.5*a,c,f+1,l),isNaN(A)?(l.nanEncountered=!0,NaN):y+A));l.nanEncountered=!0}}function it(n,r,t,e,u){void 0===e&&(e=1e-8),void 0===u&&(u=20);var o=n(r),i=n(.5*(r+t)),a=n(t);return ot(n,r,t,o,i,a,(o+4*i+a)*(t-r)/6,e,u,1,{maxDepthCount:0,nanEncountered:!1})}function at(n,r,t){function e(t){return n+(1-n)*s(1-s(t,r),1/r)}function o(n){return it(e,0,n,1e-4)}for(var i=1/o(1),a=1e3,c=(1+1e-8)*i,f=[],l=0;l<=a;l++)f.push(o(l/a)*c);function v(n){var r=0,t=a,e=500;do{f[e]>n?t=e:r=e,e=r+t>>1}while(e>r);var u=f[e+1]-f[e];return u&&(u=(n-f[e+1])/u),(e+1+u)/a}var g=2*v(1)/m*i/t,p=function(n,r){var t=v(u(d(r))),o=e(t)*n;return t/=g,[o,r>=0?t:-t]};return p.invert=function(n,r){var t;return u(r*=g)<1&&(t=h(r)*G(o(u(r))*i)),[n/e(u(r)),t]},p}function ct(){var n=0,r=2.5,t=1.183136,u=(0,e.U)(at),o=u(n,r,t);return o.alpha=function(e){return arguments.length?u(n=+e,r,t):n},o.k=function(e){return arguments.length?u(n,r=+e,t):r},o.gamma=function(e){return arguments.length?u(n,r,t=+e):t},o.scale(152.63)}function ft(n,r){return u(n[0]-r[0])<y&&u(n[1]-r[1])<y}function lt(n,r){for(var t,e,u,o=-1,i=n.length,a=n[0],c=[];++o<i;){e=((t=n[o])[0]-a[0])/r,u=(t[1]-a[1])/r;for(var f=0;f<r;++f)c.push([a[0]+f*e,a[1]+f*u]);a=t}return c.push(t),c}function vt(n,r,t){var u,o;function i(t,e){for(var u=e<0?-1:1,o=r[+(e<0)],i=0,a=o.length-1;i<a&&t>o[i][2][0];++i);var c=n(t-o[i][1][0],e);return c[0]+=n(o[i][1][0],u*e>u*o[i][0][1]?o[i][0][1]:e)[0],c}t?i.invert=t(i):n.invert&&(i.invert=function(t,e){for(var u=o[+(e<0)],a=r[+(e<0)],c=0,f=u.length;c<f;++c){var l=u[c];if(l[0][0]<=t&&t<l[1][0]&&l[0][1]<=e&&e<l[1][1]){var v=n.invert(t-n(a[c][1][0],0)[0],e);return v[0]+=a[c][1][0],ft(i(v[0],v[1]),[t,e])?v:null}}});var a=(0,e.A)(i),c=a.stream;return a.stream=function(n){var r=a.rotate(),t=c(n),e=(a.rotate([0,0]),c(n));return a.rotate(r),t.sphere=function(){(0,Dr.A)(u,e)},t},a.lobes=function(t){return arguments.length?(u=function(n){var r,t,e,u,o,i,a,c=[],f=n[0].length;for(a=0;a<f;++a)t=(r=n[0][a])[0][0],e=r[0][1],u=r[1][1],o=r[2][0],i=r[2][1],c.push(lt([[t+y,e+y],[t+y,u-y],[o-y,u-y],[o-y,i+y]],30));for(a=n[1].length-1;a>=0;--a)t=(r=n[1][a])[0][0],e=r[0][1],u=r[1][1],o=r[2][0],i=r[2][1],c.push(lt([[o-y,i-y],[o-y,u+y],[t+y,u+y],[t+y,e-y]],30));return{type:"Polygon",coordinates:[(0,Tr.Am)(c)]}}(t),r=t.map((function(n){return n.map((function(n){return[[n[0][0]*x,n[0][1]*x],[n[1][0]*x,n[1][1]*x],[n[2][0]*x,n[2][1]*x]]}))})),o=r.map((function(r){return r.map((function(r){var t,e=n(r[0][0],r[0][1])[0],u=n(r[2][0],r[2][1])[0],o=n(r[1][0],r[0][1])[1],i=n(r[1][0],r[1][1])[1];return o>i&&(t=o,o=i,i=t),[[e,o],[u,i]]}))})),a):r.map((function(n){return n.map((function(n){return[[n[0][0]*S,n[0][1]*S],[n[1][0]*S,n[1][1]*S],[n[2][0]*S,n[2][1]*S]]}))}))},null!=r&&a.lobes(r),a}$r.invert=function(n,r){return r>-Yr?on.invert(n,r-Zr):sn.invert(n,r)},rt.invert=function(n,r){return u(r)>Yr?on.invert(n,r+(r>0?Zr:-Zr)):sn.invert(n,r)};var gt=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];function st(){return vt(ln,gt).scale(160.857)}var pt=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];function ht(){return vt(rt,pt).scale(152.63)}var dt=[[[[-180,0],[-100,90],[-40,0]],[[-40,0],[30,90],[180,0]]],[[[-180,0],[-160,-90],[-100,0]],[[-100,0],[-60,-90],[-20,0]],[[-20,0],[20,-90],[80,0]],[[80,0],[140,-90],[180,0]]]];function wt(){return vt(on,dt).scale(169.529)}var yt=[[[[-180,0],[-90,90],[0,0]],[[0,0],[90,90],[180,0]]],[[[-180,0],[-90,-90],[0,0]],[[0,0],[90,-90],[180,0]]]];function At(){return vt(on,yt).scale(169.529).rotate([20,0])}var mt=[[[[-180,35],[-30,90],[0,35]],[[0,35],[30,90],[180,35]]],[[[-180,-10],[-102,-90],[-65,-10]],[[-65,-10],[5,-90],[77,-10]],[[77,-10],[103,-90],[180,-10]]]];function bt(){return vt($r,mt,nn).rotate([-20,-55]).scale(164.263).center([0,-5.4036])}var Rt=[[[[-180,0],[-110,90],[-40,0]],[[-40,0],[0,90],[40,0]],[[40,0],[110,90],[180,0]]],[[[-180,0],[-110,-90],[-40,0]],[[-40,0],[0,-90],[40,0]],[[40,0],[110,-90],[180,0]]]];function Mt(){return vt(sn,Rt).scale(152.63).rotate([-20,0])}function Et(n,r){return[3/k*n*F(m*m/3-r*r),r]}function Pt(){return(0,e.A)(Et).scale(158.837)}function kt(n){function r(r,t){if(u(u(t)-b)<y)return[0,t<0?-2:2];var e=d(t),o=s((1+e)/(1-e),n/2),i=.5*(o+1/o)+a(r*=n);return[2*d(r)/i,(o-1/o)/i]}return r.invert=function(r,t){var e=u(t);if(u(e-2)<y)return r?null:[0,h(t)*b];if(e>2)return null;var o=(r/=2)*r,a=(t/=2)*t,c=2*t/(1+o+a);return c=s((1+c)/(1-c),1/n),[i(2*r,1-o-a)/n,G((c-1)/(c+1))]},r}function St(){var n=.5,r=(0,e.U)(kt),t=r(n);return t.spacing=function(t){return arguments.length?r(n=+t):n},t.scale(124.75)}Et.invert=function(n,r){return[k/3*n/F(m*m/3-r*r),r]};var xt=m/E;function Gt(n,r){return[n*(1+F(a(r)))/2,r/(a(r/2)*a(n/6))]}function Ct(){return(0,e.A)(Gt).scale(97.2672)}function Ft(n,r){var t=n*n,e=r*r;return[n*(.975534+e*(-.0143059*t-.119161+-.0547009*e)),r*(1.00384+t*(.0802894+-.02855*e+199025e-9*t)+e*(.0998909+-.0491032*e))]}function Nt(){return(0,e.A)(Ft).scale(139.98)}function Lt(n,r){return[d(n)/a(r),w(r)*a(n)]}function Ht(){return(0,e.A)(Lt).scale(144.049).clipAngle(89.999)}function Ut(n){var r=a(n),t=w(R+n/2);function e(e,o){var i=o-n,a=u(i)<y?e*r:u(a=R+o/2)<y||u(u(a)-b)<y?0:e*i/l(w(a)/t);return[a,i]}return e.invert=function(e,o){var i,a=o+n;return[u(o)<y?e/r:u(i=R+a/2)<y||u(u(i)-b)<y?0:e*l(w(i)/t)/o,a]},e}function zt(){return gn(Ut).parallel(40).scale(158.837)}function Bt(n,r){return[n,1.25*l(w(R+.4*r))]}function jt(){return(0,e.A)(Bt).scale(108.318)}function Wt(n){var r=n.length-1;function t(t,e){for(var u,o=a(e),i=2/(1+o*a(t)),c=i*o*d(t),f=i*d(e),l=r,v=n[l],g=v[0],s=v[1];--l>=0;)g=(v=n[l])[0]+c*(u=g)-f*s,s=v[1]+c*s+f*u;return[g=c*(u=g)-f*s,s=c*s+f*u]}return t.invert=function(t,e){var c=20,f=t,l=e;do{for(var v,g=r,s=n[g],p=s[0],h=s[1],w=0,A=0;--g>=0;)w=p+f*(v=w)-l*A,A=h+f*A+l*v,p=(s=n[g])[0]+f*(v=p)-l*h,h=s[1]+f*h+l*v;var m,b,R=(w=p+f*(v=w)-l*A)*w+(A=h+f*A+l*v)*A;f-=m=((p=f*(v=p)-l*h-t)*w+(h=f*h+l*v-e)*A)/R,l-=b=(h*w-p*A)/R}while(u(m)+u(b)>y*y&&--c>0);if(c){var M=F(f*f+l*l),E=2*o(.5*M),P=d(E);return[i(f*P,M*a(E)),M?G(l*P/M):0]}},t}Gt.invert=function(n,r){var t=u(n),e=u(r),o=y,i=b;e<xt?i*=e/xt:o+=6*C(xt/e);for(var c=0;c<25;c++){var f=d(i),l=F(a(i)),v=d(i/2),g=a(i/2),s=d(o/6),p=a(o/6),h=.5*o*(1+l)-t,w=i/(g*p)-e,A=l?-.25*o*f/l:0,m=.5*(1+l),R=(1+.5*i*v/g)/(g*p),M=i/g*(s/6)/(p*p),E=A*M-R*m,P=(h*M-w*m)/E,k=(w*A-h*R)/E;if(i-=P,o-=k,u(P)<y&&u(k)<y)break}return[n<0?-o:o,r<0?-i:i]},Ft.invert=function(n,r){var t=h(n)*m,e=r/2,o=50;do{var i=t*t,a=e*e,c=t*e,f=t*(.975534+a*(-.0143059*i-.119161+-.0547009*a))-n,l=e*(1.00384+i*(.0802894+-.02855*a+199025e-9*i)+a*(.0998909+-.0491032*a))-r,v=.975534-a*(.119161+3*i*.0143059+.0547009*a),g=-c*(.238322+.2188036*a+.0286118*i),s=c*(.1605788+7961e-7*i+-.0571*a),p=1.00384+i*(.0802894+199025e-9*i)+a*(3*(.0998909-.02855*i)-.245516*a),d=g*s-p*v,w=(l*g-f*p)/d,A=(f*s-l*v)/d;t-=w,e-=A}while((u(w)>y||u(A)>y)&&--o>0);return o&&[t,e]},Lt.invert=function(n,r){var t=n*n,e=r*r+1,u=t+e,o=n?M*F((u-F(u*u-4*t))/t):1/F(e);return[G(n*o),h(r)*C(o)]},Bt.invert=function(n,r){return[n,2.5*o(c(.8*r))-.625*m]};var Tt=[[.9972523,0],[.0052513,-.0041175],[.0074606,.0048125],[-.0153783,-.1968253],[.0636871,-.1408027],[.3660976,-.2937382]],Dt=[[.98879,0],[0,0],[-.050909,0],[0,0],[.075528,0]],It=[[.984299,0],[.0211642,.0037608],[-.1036018,-.0575102],[-.0329095,-.0320119],[.0499471,.1223335],[.026046,.0899805],[7388e-7,-.1435792],[.0075848,-.1334108],[-.0216473,.0776645],[-.0225161,.0853673]],Qt=[[.9245,0],[0,0],[.01943,0]],Vt=[[.721316,0],[0,0],[-.00881625,-.00617325]];function qt(){return Xt(Tt,[152,-64]).scale(1400).center([-160.908,62.4864]).clipAngle(30).angle(7.8)}function _t(){return Xt(Dt,[95,-38]).scale(1e3).clipAngle(55).center([-96.5563,38.8675])}function Kt(){return Xt(It,[120,-45]).scale(359.513).clipAngle(55).center([-117.474,53.0628])}function Jt(){return Xt(Qt,[-20,-18]).scale(209.091).center([20,16.7214]).clipAngle(82)}function Ot(){return Xt(Vt,[165,10]).scale(250).clipAngle(130).center([-165,-10])}function Xt(n,r){var t=(0,e.A)(Wt(n)).rotate(r).clipAngle(90),u=(0,Rn.A)(r),o=t.center;return delete t.rotate,t.center=function(n){return arguments.length?o(u(n)):u.invert(o())},t}var Yt=F(6),Zt=F(7);function $t(n,r){var t=G(7*d(r)/(3*Yt));return[Yt*n*(2*a(2*t/3)-1)/Zt,9*d(t/3)/Zt]}function ne(){return(0,e.A)($t).scale(164.859)}function re(n,r){for(var t,e=(1+M)*d(r),o=r,i=0;i<25&&(o-=t=(d(o/2)+d(o)-e)/(.5*a(o/2)+a(o)),!(u(t)<y));i++);return[n*(1+2*a(o)/a(o/2))/(3*E),2*F(3)*d(o/2)/F(2+E)]}function te(){return(0,e.A)(re).scale(188.209)}function ee(n,r){for(var t,e=F(6/(4+m)),o=(1+m/4)*d(r),i=r/2,c=0;c<25&&(i-=t=(i/2+d(i)-o)/(.5+a(i)),!(u(t)<y));c++);return[e*(.5+a(i))*n/1.5,e*i]}function ue(){return(0,e.A)(ee).scale(166.518)}$t.invert=function(n,r){var t=3*G(r*Zt/9);return[n*Zt/(Yt*(2*a(2*t/3)-1)),G(3*d(t)*Yt/7)]},re.invert=function(n,r){var t=r*F(2+E)/(2*F(3)),e=2*G(t);return[3*E*n/(1+2*a(e)/a(e/2)),G((t+d(e))/(1+M))]},ee.invert=function(n,r){var t=F(6/(4+m)),e=r/t;return u(u(e)-b)<y&&(e=e<0?-b:b),[1.5*n/(t*(.5+a(e))),G((e/2+d(e))/(1+m/4))]};var oe=t(90723);function ie(n,r){var t=r*r,e=t*t,u=t*e;return[n*(.84719-.13063*t+u*u*(.05494*t-.04515-.02326*e+.00331*u)),r*(1.01183+e*e*(.01926*t-.02625-.00396*e))]}function ae(){return(0,e.A)(ie).scale(175.295)}function ce(n,r){return[n*(1+a(r))/2,2*(r-w(r/2))]}function fe(){return(0,e.A)(ce).scale(152.63)}ie.invert=function(n,r){var t,e,o,i,a=r,c=25;do{a-=t=(a*(1.01183+(o=(e=a*a)*e)*o*(.01926*e-.02625-.00396*o))-r)/(1.01183+o*o*(.21186*e-.23625+-.05148*o))}while(u(t)>A&&--c>0);return[n/(.84719-.13063*(e=a*a)+(i=e*(o=e*e))*i*(.05494*e-.04515-.02326*o+.00331*i)),a]},ce.invert=function(n,r){for(var t=r/2,e=0,o=1/0;e<10&&u(o)>y;++e){var i=a(r/2);r-=o=(r-w(r/2)-t)/(1-.5/(i*i))}return[2*n/(1+a(r)),r]};var le=[[[[-180,0],[-90,90],[0,0]],[[0,0],[90,90],[180,0]]],[[[-180,0],[-90,-90],[0,0]],[[0,0],[90,-90],[180,0]]]];function ve(){return vt(X(1/0),le).rotate([20,0]).scale(152.63)}function ge(n,r){var t=d(r),e=a(r),o=h(n);if(0===n||u(r)===b)return[0,r];if(0===r)return[n,0];if(u(n)===b)return[n*e,b*t];var i=m/(2*n)-2*n/m,c=2*r/m,f=(1-c*c)/(t-c),l=i*i,v=f*f,g=1+l/v,s=1+v/l,p=(i*t/f-i/2)/g,w=(v*t/l+f/2)/s,y=w*w-(v*t*t/l+f*t-1)/s;return[b*(p+F(p*p+e*e/g)*o),b*(w+F(y<0?0:y)*h(-r*i)*o)]}function se(){return(0,e.A)(ge).scale(127.267)}ge.invert=function(n,r){var t=(n/=b)*n,e=t+(r/=b)*r,u=m*m;return[n?(e-1+F((1-e)*(1-e)+4*t))/(2*n)*b:0,$((function(n){return e*(m*d(n)-2*n)*m+4*n*n*(r-d(n))+2*m*n-u*r}),0)]};var pe=1.0148,he=.23185,de=-.14499,we=.02406,ye=pe,Ae=5*he,me=7*de,be=9*we,Re=1.790857183;function Me(n,r){var t=r*r;return[n,r*(pe+t*t*(he+t*(de+we*t)))]}function Ee(){return(0,e.A)(Me).scale(139.319)}function Pe(n,r){if(u(r)<y)return[n,0];var t=w(r),e=n*d(r);return[d(e)/t,r+(1-a(e))/t]}function ke(){return(0,e.A)(Pe).scale(103.74)}Me.invert=function(n,r){r>Re?r=Re:r<-1.790857183&&(r=-1.790857183);var t,e=r;do{var o=e*e;e-=t=(e*(pe+o*o*(he+o*(de+we*o)))-r)/(ye+o*o*(Ae+o*(me+be*o)))}while(u(t)>y);return[n,e]},Pe.invert=function(n,r){if(u(r)<y)return[n,0];var t,e=n*n+r*r,o=.5*r,i=10;do{var c=w(o),f=1/a(o),l=e-2*r*o+o*o;o-=t=(c*l+2*(o-r))/(2+l*f*f+2*(o-r)*c)}while(u(t)>y&&--i>0);return c=w(o),[(u(r)<u(o+1/c)?G(n*c):h(r)*h(n)*(C(u(n*c))+b))/d(o),o]};var Se=t(28522),xe=t(84668);function Ge(n,r){var t=Fe(n[1],n[0]),e=Fe(r[1],r[0]),u=function(n,r){return i(n[0]*r[1]-n[1]*r[0],n[0]*r[0]+n[1]*r[1])}(t,e),o=Ne(t)/Ne(e);return Ce([1,0,n[0][0],0,1,n[0][1]],Ce([o,0,0,0,o,0],Ce([a(u),d(u),0,-d(u),a(u),0],[1,0,-r[0][0],0,1,-r[0][1]])))}function Ce(n,r){return[n[0]*r[0]+n[1]*r[3],n[0]*r[1]+n[1]*r[4],n[0]*r[2]+n[1]*r[5]+n[2],n[3]*r[0]+n[4]*r[3],n[3]*r[1]+n[4]*r[4],n[3]*r[2]+n[4]*r[5]+n[5]]}function Fe(n,r){return[n[0]-r[0],n[1]-r[1]]}function Ne(n){return F(n[0]*n[0]+n[1]*n[1])}function Le(n,r,t){function u(n,t){var e,u=r(n,t),o=u.project([n*S,t*S]);return(e=u.transform)?[e[0]*o[0]+e[1]*o[1]+e[2],-(e[3]*o[0]+e[4]*o[1]+e[5])]:(o[1]=-o[1],o)}function o(n,t){var e=n.project.invert,u=n.transform,i=t;if(u&&(u=function(n){var r=1/(n[0]*n[4]-n[1]*n[3]);return[r*n[4],-r*n[1],r*(n[1]*n[5]-n[2]*n[4]),-r*n[3],r*n[0],r*(n[2]*n[3]-n[0]*n[5])]}(u),i=[u[0]*i[0]+u[1]*i[1]+u[2],u[3]*i[0]+u[4]*i[1]+u[5]]),e&&n===function(n){return r(n[0]*x,n[1]*x)}(a=e(i)))return a;for(var a,c=n.children,f=0,l=c&&c.length;f<l;++f)if(a=o(c[f],t))return a}!function n(r,t){if(r.edges=function(n){for(var r=n.length,t=[],e=n[r-1],u=0;u<r;++u)t.push([e,e=n[u]]);return t}(r.face),t.face){var e=r.shared=function(n,r){for(var t,e,u=n.length,o=null,i=0;i<u;++i){t=n[i];for(var a=r.length;--a>=0;)if(e=r[a],t[0]===e[0]&&t[1]===e[1]){if(o)return[o,t];o=t}}}(r.face,t.face),u=Ge(e.map(t.project),e.map(r.project));r.transform=t.transform?Ce(t.transform,u):u;for(var o=t.edges,i=0,a=o.length;i<a;++i)Ue(e[0],o[i][1])&&Ue(e[1],o[i][0])&&(o[i]=r),Ue(e[0],o[i][0])&&Ue(e[1],o[i][1])&&(o[i]=r);for(i=0,a=(o=r.edges).length;i<a;++i)Ue(e[0],o[i][0])&&Ue(e[1],o[i][1])&&(o[i]=t),Ue(e[0],o[i][1])&&Ue(e[1],o[i][0])&&(o[i]=t)}else r.transform=t.transform;r.children&&r.children.forEach((function(t){n(t,r)}));return r}(n,{transform:null}),ze(n)&&(u.invert=function(r,t){var e=o(n,[r,-t]);return e&&(e[0]*=x,e[1]*=x,e)});var i=(0,e.A)(u),a=i.stream;return i.stream=function(r){var t=i.rotate(),e=a(r),u=(i.rotate([0,0]),a(r));return i.rotate(t),e.sphere=function(){u.polygonStart(),u.lineStart(),He(u,n),u.lineEnd(),u.polygonEnd()},e},i.angle(null==t?-30:t*S)}function He(n,r,t){var e,o,i=r.edges,a=i.length,c={type:"MultiPoint",coordinates:r.face},f=r.face.filter((function(n){return 90!==u(n[1])})),l=(0,Se.A)({type:"MultiPoint",coordinates:f}),v=!1,g=-1,s=l[1][0]-l[0][0],p=180===s||360===s?[(l[0][0]+l[1][0])/2,(l[0][1]+l[1][1])/2]:(0,bn.A)(c);if(t)for(;++g<a&&i[g]!==t;);++g;for(var h=0;h<a;++h)o=i[(h+g)%a],Array.isArray(o)?(v||(n.point((e=(0,xe.A)(o[0],p)(y))[0],e[1]),v=!0),n.point((e=(0,xe.A)(o[1],p)(y))[0],e[1])):(v=!1,o!==t&&He(n,o,r))}function Ue(n,r){return n&&r&&n[0]===r[0]&&n[1]===r[1]}function ze(n){return n.project.invert||n.children&&n.children.some(ze)}var Be=t(42993),je=[[0,90],[-90,0],[0,0],[90,0],[180,0],[0,-90]],We=[[0,2,1],[0,3,2],[5,1,2],[5,2,3],[0,1,4],[0,4,3],[5,4,1],[5,3,4]].map((function(n){return n.map((function(n){return je[n]}))}));function Te(n){n=n||function(n){var r=(0,bn.A)({type:"MultiPoint",coordinates:n});return(0,Be.A)().scale(1).translate([0,0]).rotate([-r[0],-r[1]])};var r=We.map((function(r){return{face:r,project:n(r)}}));return[-1,0,0,1,0,1,4,5].forEach((function(n,t){var e=r[n];e&&(e.children||(e.children=[])).push(r[t])})),Le(r[0],(function(n,t){return r[n<-m/2?t<0?6:4:n<0?t<0?2:0:n<m/2?t<0?3:1:t<0?7:5]})).angle(-30).scale(101.858).center([0,45])}var De=2/F(3);function Ie(n,r){var t=Cn(n,r);return[t[0]*De,t[1]]}function Qe(n){n=n||function(n){var r=(0,bn.A)({type:"MultiPoint",coordinates:n});return(0,e.A)(Ie).translate([0,0]).scale(1).rotate(r[1]>0?[-r[0],0]:[180-r[0],180])};var r=We.map((function(r){return{face:r,project:n(r)}}));return[-1,0,0,1,0,1,4,5].forEach((function(n,t){var e=r[n];e&&(e.children||(e.children=[])).push(r[t])})),Le(r[0],(function(n,t){return r[n<-m/2?t<0?6:4:n<0?t<0?2:0:n<m/2?t<0?3:1:t<0?7:5]})).angle(-30).scale(121.906).center([0,48.5904])}function Ve(n){n=n||function(n){var r=6===n.length?(0,bn.A)({type:"MultiPoint",coordinates:n}):n[0];return(0,Be.A)().scale(1).translate([0,0]).rotate([-r[0],-r[1]])};var r=We.map((function(n){for(var r,t=n.map(Ke),e=t.length,u=t[e-1],o=[],i=0;i<e;++i)r=t[i],o.push(_e([.9486832980505138*u[0]+.31622776601683794*r[0],.9486832980505138*u[1]+.31622776601683794*r[1],.9486832980505138*u[2]+.31622776601683794*r[2]]),_e([.9486832980505138*r[0]+.31622776601683794*u[0],.9486832980505138*r[1]+.31622776601683794*u[1],.9486832980505138*r[2]+.31622776601683794*u[2]])),u=r;return o})),t=[],e=[-1,0,0,1,0,1,4,5];r.forEach((function(n,u){for(var o,i,a=We[u],c=a.length,f=t[u]=[],l=0;l<c;++l)r.push([a[l],n[(2*l+2)%(2*c)],n[(2*l+1)%(2*c)]]),e.push(u),f.push((o=Ke(n[(2*l+2)%(2*c)]),i=Ke(n[(2*l+1)%(2*c)]),[o[1]*i[2]-o[2]*i[1],o[2]*i[0]-o[0]*i[2],o[0]*i[1]-o[1]*i[0]]))}));var u=r.map((function(r){return{project:n(r),face:r}}));return e.forEach((function(n,r){var t=u[n];t&&(t.children||(t.children=[])).push(u[r])})),Le(u[0],(function(n,r){var e=a(r),o=[e*a(n),e*d(n),d(r)],i=n<-m/2?r<0?6:4:n<0?r<0?2:0:n<m/2?r<0?3:1:r<0?7:5,c=t[i];return u[qe(c[0],o)<0?8+3*i:qe(c[1],o)<0?8+3*i+1:qe(c[2],o)<0?8+3*i+2:i]})).angle(-30).scale(110.625).center([0,45])}function qe(n,r){for(var t=0,e=n.length,u=0;t<e;++t)u+=n[t]*r[t];return u}function _e(n){return[i(n[1],n[0])*S,G(v(-1,g(1,n[2])))*S]}function Ke(n){var r=n[0]*x,t=n[1]*x,e=a(t);return[e*a(r),e*d(r),d(t)]}function Je(){}function Oe(n,r){var t,e=r.stream;if(!e)throw new Error("invalid projection");switch(n&&n.type){case"Feature":t=Ye;break;case"FeatureCollection":t=Xe;break;default:t=Ze}return t(n,e)}function Xe(n,r){return{type:"FeatureCollection",features:n.features.map((function(n){return Ye(n,r)}))}}function Ye(n,r){return{type:"Feature",id:n.id,properties:n.properties,geometry:Ze(n.geometry,r)}}function Ze(n,r){if(!n)return null;if("GeometryCollection"===n.type)return function(n,r){return{type:"GeometryCollection",geometries:n.geometries.map((function(n){return Ze(n,r)}))}}(n,r);var t;switch(n.type){case"Point":case"MultiPoint":t=ru;break;case"LineString":case"MultiLineString":t=tu;break;case"Polygon":case"MultiPolygon":case"Sphere":t=eu;break;default:return null}return(0,Dr.A)(n,r(t)),t.result()}Ie.invert=function(n,r){return Cn.invert(n/De,r)};var $e=[],nu=[],ru={point:function(n,r){$e.push([n,r])},result:function(){var n=$e.length?$e.length<2?{type:"Point",coordinates:$e[0]}:{type:"MultiPoint",coordinates:$e}:null;return $e=[],n}},tu={lineStart:Je,point:function(n,r){$e.push([n,r])},lineEnd:function(){$e.length&&(nu.push($e),$e=[])},result:function(){var n=nu.length?nu.length<2?{type:"LineString",coordinates:nu[0]}:{type:"MultiLineString",coordinates:nu}:null;return nu=[],n}},eu={polygonStart:Je,lineStart:Je,point:function(n,r){$e.push([n,r])},lineEnd:function(){var n=$e.length;if(n){do{$e.push($e[0].slice())}while(++n<4);nu.push($e),$e=[]}},polygonEnd:Je,result:function(){if(!nu.length)return null;var n=[],r=[];return nu.forEach((function(t){!function(n){if((r=n.length)<4)return!1;for(var r,t=0,e=n[r-1][1]*n[0][0]-n[r-1][0]*n[0][1];++t<r;)e+=n[t-1][1]*n[t][0]-n[t-1][0]*n[t][1];return e<=0}(t)?r.push(t):n.push([t])})),r.forEach((function(r){var t=r[0];n.some((function(n){if(function(n,r){for(var t=r[0],e=r[1],u=!1,o=0,i=n.length,a=i-1;o<i;a=o++){var c=n[o],f=c[0],l=c[1],v=n[a],g=v[0],s=v[1];l>e^s>e&&t<(g-f)*(e-l)/(s-l)+f&&(u=!u)}return u}(n[0],t))return n.push(r),!0}))||n.push([r])})),nu=[],n.length?n.length>1?{type:"MultiPolygon",coordinates:n}:{type:"Polygon",coordinates:n[0]}:null}};function uu(n){var r=n(b,0)[0]-n(-b,0)[0];function t(t,e){var o=u(t)<b,i=n(o?t:t>0?t-m:t+m,e),a=(i[0]-i[1])*M,c=(i[0]+i[1])*M;if(o)return[a,c];var f=r*M,l=a>0^c>0?-1:1;return[l*a-h(c)*f,l*c-h(a)*f]}return n.invert&&(t.invert=function(t,e){var o=(t+e)*M,i=(e-t)*M,a=u(o)<.5*r&&u(i)<.5*r;if(!a){var c=r*M,f=o>0^i>0?-1:1,l=-f*t+(i>0?1:-1)*c,v=-f*e+(o>0?1:-1)*c;o=(-l-v)*M,i=(l-v)*M}var g=n.invert(o,i);return a||(g[0]+=o>0?m:-m),g}),(0,e.A)(t).rotate([-90,-90,45]).clipAngle(179.999)}function ou(){return uu(Cr).scale(176.423)}function iu(){return uu(Hr).scale(111.48)}function au(n,r){if(!(0<=(r=+r)&&r<=20))throw new Error("invalid digits");function t(n){var t=n.length,e=2,u=new Array(t);for(u[0]=+n[0].toFixed(r),u[1]=+n[1].toFixed(r);e<t;)u[e]=n[e],++e;return u}function e(n){return n.map(t)}function u(n){for(var r=t(n[0]),e=[r],u=1;u<n.length;u++){var o=t(n[u]);(o.length>2||o[0]!=r[0]||o[1]!=r[1])&&(e.push(o),r=o)}return 1===e.length&&n.length>1&&e.push(t(n[n.length-1])),e}function o(n){return n.map(u)}function i(n){if(null==n)return n;var r;switch(n.type){case"GeometryCollection":r={type:"GeometryCollection",geometries:n.geometries.map(i)};break;case"Point":r={type:"Point",coordinates:t(n.coordinates)};break;case"MultiPoint":r={type:n.type,coordinates:e(n.coordinates)};break;case"LineString":r={type:n.type,coordinates:u(n.coordinates)};break;case"MultiLineString":case"Polygon":r={type:n.type,coordinates:o(n.coordinates)};break;case"MultiPolygon":r={type:"MultiPolygon",coordinates:n.coordinates.map(o)};break;default:return n}return null!=n.bbox&&(r.bbox=n.bbox),r}function a(n){var r={type:"Feature",properties:n.properties,geometry:i(n.geometry)};return null!=n.id&&(r.id=n.id),null!=n.bbox&&(r.bbox=n.bbox),r}if(null!=n)switch(n.type){case"Feature":return a(n);case"FeatureCollection":var c={type:"FeatureCollection",features:n.features.map(a)};return null!=n.bbox&&(c.bbox=n.bbox),c;default:return i(n)}return n}function cu(n){var r=d(n);function t(t,e){var u=r?w(t*r/2)/r:t/2;if(!e)return[2*u,-n];var i=2*o(u*d(e)),c=1/w(e);return[d(i)*c,e+(1-a(i))*c-n]}return t.invert=function(t,e){if(u(e+=n)<y)return[r?2*o(r*t/2)/r:t,0];var i,c=t*t+e*e,f=0,l=10;do{var v=w(f),g=1/a(f),s=c-2*e*f+f*f;f-=i=(v*s+2*(f-e))/(2+s*g*g+2*(f-e)*v)}while(u(i)>y&&--l>0);var p=t*(v=w(f)),h=w(u(e)<u(f+1/v)?.5*G(p):.5*C(p)+m/4)/d(f);return[r?2*o(r*h)/r:2*h,f]},t}function fu(){return gn(cu).scale(131.215)}var lu=[[.9986,-.062],[1,0],[.9986,.062],[.9954,.124],[.99,.186],[.9822,.248],[.973,.31],[.96,.372],[.9427,.434],[.9216,.4958],[.8962,.5571],[.8679,.6176],[.835,.6769],[.7986,.7346],[.7597,.7903],[.7186,.8435],[.6732,.8936],[.6213,.9394],[.5722,.9761],[.5322,1]];function vu(n,r){var t,e=g(18,36*u(r)/m),o=f(e),i=e-o,a=(t=lu[o])[0],c=t[1],l=(t=lu[++o])[0],v=t[1],s=(t=lu[g(19,++o)])[0],p=t[1];return[n*(l+i*(s-a)/2+i*i*(s-2*l+a)/2),(r>0?b:-b)*(v+i*(p-c)/2+i*i*(p-2*v+c)/2)]}function gu(){return(0,e.A)(vu).scale(152.63)}function su(n,r){var t=function(n){function r(r,t){var e=a(t),u=(n-1)/(n-e*a(r));return[u*e*d(r),u*d(t)]}return r.invert=function(r,t){var e=r*r+t*t,u=F(e),o=(n-F(1-e*(n+1)/(n-1)))/((n-1)/u+u/(n-1));return[i(r*o,u*F(1-o*o)),u?G(t*o/u):0]},r}(n);if(!r)return t;var e=a(r),u=d(r);function o(r,o){var i=t(r,o),a=i[1],c=a*u/(n-1)+e;return[i[0]*e/c,a/c]}return o.invert=function(r,o){var i=(n-1)/(n-1-o*u);return t.invert(i*r,i*o*e)},o}function pu(){var n=2,r=0,t=(0,e.U)(su),u=t(n,r);return u.distance=function(e){return arguments.length?t(n=+e,r):n},u.tilt=function(e){return arguments.length?t(n,r=e*x):r*S},u.scale(432.147).clipAngle(C(1/n)*S-1e-6)}lu.forEach((function(n){n[1]*=1.0144})),vu.invert=function(n,r){var t=r/b,e=90*t,o=g(18,u(e/5)),i=v(0,f(o));do{var a=lu[i][1],c=lu[i+1][1],l=lu[g(19,i+2)][1],s=l-a,p=l-2*c+a,h=2*(u(t)-c)/s,d=p/s,w=h*(1-d*h*(1-2*d*h));if(w>=0||1===i){e=(r>=0?5:-5)*(w+o);var y,m=50;do{w=(o=g(18,u(e)/5))-(i=f(o)),a=lu[i][1],c=lu[i+1][1],l=lu[g(19,i+2)][1],e-=(y=(r>=0?b:-b)*(c+w*(l-a)/2+w*w*(l-2*c+a)/2)-r)*S}while(u(y)>A&&--m>0);break}}while(--i>=0);var R=lu[i][0],M=lu[i+1][0],E=lu[g(19,i+2)][0];return[n/(M+w*(E-R)/2+w*w*(E-2*M+R)/2),e*x]};var hu=1e-4,du=1e4,wu=-180,yu=wu+hu,Au=180,mu=Au-hu,bu=-90,Ru=bu+hu,Mu=90,Eu=Mu-hu;function Pu(n){return n.length>0}function ku(n){return n===bu||n===Mu?[0,n]:[wu,(r=n,Math.floor(r*du)/du)];var r}function Su(n){var r=n[0],t=n[1],e=!1;return r<=yu?(r=wu,e=!0):r>=mu&&(r=Au,e=!0),t<=Ru?(t=bu,e=!0):t>=Eu&&(t=Mu,e=!0),e?[r,t]:n}function xu(n){return n.map(Su)}function Gu(n,r,t){for(var e=0,u=n.length;e<u;++e){var o=n[e].slice();t.push({index:-1,polygon:r,ring:o});for(var i=0,a=o.length;i<a;++i){var c=o[i],f=c[0],l=c[1];if(f<=yu||f>=mu||l<=Ru||l>=Eu){o[i]=Su(c);for(var v=i+1;v<a;++v){var g=o[v],s=g[0],p=g[1];if(s>yu&&s<mu&&p>Ru&&p<Eu)break}if(v===i+1)continue;if(i){var h={index:-1,polygon:r,ring:o.slice(0,i+1)};h.ring[h.ring.length-1]=ku(l),t[t.length-1]=h}else t.pop();if(v>=a)break;t.push({index:-1,polygon:r,ring:o=o.slice(v-1)}),o[0]=ku(o[0][1]),i=-1,a=o.length}}}}function Cu(n){var r,t,e,u,o,i,a=n.length,c={},f={};for(r=0;r<a;++r)e=(t=n[r]).ring[0],o=t.ring[t.ring.length-1],e[0]!==o[0]||e[1]!==o[1]?(t.index=r,c[e]=f[o]=t):(t.polygon.push(t.ring),n[r]=null);for(r=0;r<a;++r)if(t=n[r]){if(e=t.ring[0],o=t.ring[t.ring.length-1],u=f[e],i=c[o],delete c[e],delete f[o],e[0]===o[0]&&e[1]===o[1]){t.polygon.push(t.ring);continue}u?(delete f[e],delete c[u.ring[0]],u.ring.pop(),n[u.index]=null,t={index:-1,polygon:u.polygon,ring:u.ring.concat(t.ring)},u===i?t.polygon.push(t.ring):(t.index=a++,n.push(c[t.ring[0]]=f[t.ring[t.ring.length-1]]=t))):i?(delete c[o],delete f[i.ring[i.ring.length-1]],t.ring.pop(),t={index:a++,polygon:i.polygon,ring:t.ring.concat(i.ring)},n[i.index]=null,n.push(c[t.ring[0]]=f[t.ring[t.ring.length-1]]=t)):(t.ring.push(t.ring[0]),t.polygon.push(t.ring))}}function Fu(n){var r={type:"Feature",geometry:Nu(n.geometry)};return null!=n.id&&(r.id=n.id),null!=n.bbox&&(r.bbox=n.bbox),null!=n.properties&&(r.properties=n.properties),r}function Nu(n){if(null==n)return n;var r,t,e,u;switch(n.type){case"GeometryCollection":r={type:"GeometryCollection",geometries:n.geometries.map(Nu)};break;case"Point":r={type:"Point",coordinates:Su(n.coordinates)};break;case"MultiPoint":case"LineString":r={type:n.type,coordinates:xu(n.coordinates)};break;case"MultiLineString":r={type:"MultiLineString",coordinates:n.coordinates.map(xu)};break;case"Polygon":var o=[];Gu(n.coordinates,o,t=[]),Cu(t),r={type:"Polygon",coordinates:o};break;case"MultiPolygon":t=[],e=-1,u=n.coordinates.length;for(var i=new Array(u);++e<u;)Gu(n.coordinates[e],i[e]=[],t);Cu(t),r={type:"MultiPolygon",coordinates:i.filter(Pu)};break;default:return n}return null!=n.bbox&&(r.bbox=n.bbox),r}function Lu(n){if(null==n)return n;switch(n.type){case"Feature":return Fu(n);case"FeatureCollection":var r={type:"FeatureCollection",features:n.features.map(Fu)};return null!=n.bbox&&(r.bbox=n.bbox),r;default:return Nu(n)}}function Hu(n,r){var t=w(r/2),e=d(R*t);return[n*(.74482-.34588*e*e),1.70711*t]}function Uu(){return(0,e.A)(Hu).scale(146.153)}function zu(n,r,t){var u=(0,xe.A)(r,t),o=u(.5),i=(0,Rn.A)([-o[0],-o[1]])(r),a=u.distance/2,c=-G(d(i[1]*x)/d(a)),f=[-o[0],-o[1],-(i[0]>0?m-c:c)*S],l=(0,e.A)(n(a)).rotate(f),v=(0,Rn.A)(f),g=l.center;return delete l.rotate,l.center=function(n){return arguments.length?g(v(n)):v.invert(g())},l.clipAngle(90)}function Bu(n){var r=a(n);function t(n,t){var e=(0,Be.T)(n,t);return e[0]*=r,e}return t.invert=function(n,t){return Be.T.invert(n/r,t)},t}function ju(){return Wu([-158,21.5],[-77,39]).clipAngle(60).scale(400)}function Wu(n,r){return zu(Bu,n,r)}function Tu(n){if(!(n*=2))return _.j;var r=-n/2,t=-r,e=n*n,u=w(t),o=.5/d(t);function c(u,o){var i=C(a(o)*a(u-r)),c=C(a(o)*a(u-t));return[((i*=i)-(c*=c))/(2*n),(o<0?-1:1)*F(4*e*c-(e-i+c)*(e-i+c))/(2*n)]}return c.invert=function(n,e){var c,f,l=e*e,v=a(F(l+(c=n+r)*c)),g=a(F(l+(c=n+t)*c));return[i(f=v-g,c=(v+g)*u),(e<0?-1:1)*C(F(c*c+f*f)*o)]},c}function Du(){return Iu([-158,21.5],[-77,39]).clipAngle(130).scale(122.571)}function Iu(n,r){return zu(Tu,n,r)}function Qu(n,r){if(u(r)<y)return[n,0];var t=u(r/b),e=G(t);if(u(n)<y||u(u(r)-b)<y)return[0,h(r)*m*w(e/2)];var o=a(e),i=u(m/n-n/m)/2,c=i*i,f=o/(t+o-1),l=f*(2/t-1),v=l*l,g=v+c,s=f-v,p=c+f;return[h(n)*m*(i*s+F(c*s*s-g*(f*f-v)))/g,h(r)*m*(l*p-i*F((c+1)*g-p*p))/g]}function Vu(){return(0,e.A)(Qu).scale(79.4183)}function qu(n,r){if(u(r)<y)return[n,0];var t=u(r/b),e=G(t);if(u(n)<y||u(u(r)-b)<y)return[0,h(r)*m*w(e/2)];var o=a(e),i=u(m/n-n/m)/2,c=i*i,f=o*(F(1+c)-i*o)/(1+c*t*t);return[h(n)*m*f,h(r)*m*F(1-f*(2*i+f))]}function _u(){return(0,e.A)(qu).scale(79.4183)}function Ku(n,r){if(u(r)<y)return[n,0];var t=r/b,e=G(t);if(u(n)<y||u(u(r)-b)<y)return[0,m*w(e/2)];var o=(m/n-n/m)/2,i=t/(1+a(e));return[m*(h(n)*F(o*o+1-i*i)-o),m*i]}function Ju(){return(0,e.A)(Ku).scale(79.4183)}function Ou(n,r){if(!r)return[n,0];var t=u(r);if(!n||t===b)return[0,r];var e=t/b,o=e*e,i=(8*e-o*(o+2)-5)/(2*o*(e-1)),a=i*i,c=e*i,f=o+a+2*c,l=e+3*i,v=n/b,g=v+1/v,s=h(u(n)-b)*F(g*g-4),p=s*s,d=(s*(f+a-1)+2*F(f*(o+a*p-1)+(1-o)*(o*(l*l+4*a)+12*c*a+4*a*a)))/(4*f+p);return[h(n)*b*d,h(r)*b*F(1+s*u(d)-d*d)]}function Xu(){return(0,e.A)(Ou).scale(127.16)}function Yu(n,r,t,e){var u=m/3;n=v(n,y),r=v(r,y),n=g(n,b),r=g(r,m-y),t=v(t,0),t=g(t,100-y);var o=(e=v(e,y))/100,c=C((t/100+1)*a(u))/u,f=d(n)/d(c*b),l=r/m,s=F(o*d(n/2)/d(r/2));return function(n,r,t,e,u){function o(o,i){var c=t*d(e*i),f=F(1-c*c),l=F(2/(1+f*a(o*=u)));return[n*f*l*d(o),r*c*l]}return o.invert=function(o,a){var c=o/n,f=a/r,l=F(c*c+f*f),v=2*G(l/2);return[i(o*w(v),n*l)/u,l&&G(a*d(v)/(r*t*l))/e]},o}(s/F(l*f*c),1/(s*F(l*f*c)),f,c,l)}function Zu(){var n=65*x,r=60*x,t=20,u=200,o=(0,e.U)(Yu),i=o(n,r,t,u);return i.poleline=function(e){return arguments.length?o(n=+e*x,r,t,u):n*S},i.parallels=function(e){return arguments.length?o(n,r=+e*x,t,u):r*S},i.inflation=function(e){return arguments.length?o(n,r,t=+e,u):t},i.ratio=function(e){return arguments.length?o(n,r,t,u=+e):u},i.scale(163.775)}function $u(){return Zu().poleline(65).parallels(60).inflation(0).ratio(200).scale(172.633)}Hu.invert=function(n,r){var t=r/1.70711,e=d(R*t);return[n/(.74482-.34588*e*e),2*o(t)]},Qu.invert=function(n,r){if(u(r)<y)return[n,0];if(u(n)<y)return[0,b*d(2*o(r/m))];var t=(n/=m)*n,e=(r/=m)*r,i=t+e,c=i*i,f=-u(r)*(1+i),l=f-2*e+t,v=-2*f+1+2*e+c,g=e/v+(2*l*l*l/(v*v*v)-9*f*l/(v*v))/27,s=(f-l*l/(3*v))/v,p=2*F(-s/3),w=C(3*g/(s*p))/3;return[m*(i-1+F(1+2*(t-e)+c))/(2*n),h(r)*m*(-p*a(w+m/3)-l/(3*v))]},qu.invert=function(n,r){if(!n)return[0,b*d(2*o(r/m))];var t=u(n/m),e=(1-t*t-(r/=m)*r)/(2*t),a=F(e*e+1);return[h(n)*m*(a-e),h(r)*b*d(2*i(F((1-2*e*t)*(e+a)-t),F(a+e+t)))]},Ku.invert=function(n,r){if(!r)return[n,0];var t=r/m,e=(m*m*(1-t*t)-n*n)/(2*m*n);return[n?m*(h(n)*F(e*e+1)-e):0,b*d(2*o(t))]},Ou.invert=function(n,r){var t;if(!n||!r)return[n,r];r/=m;var e=h(n)*n/b,o=(e*e-1+4*r*r)/u(e),i=o*o,a=2*r,c=50;do{var f=a*a,l=(8*a-f*(f+2)-5)/(2*f*(a-1)),v=(3*a-f*a-10)/(2*f*a),g=l*l,s=a*l,p=a+l,d=p*p,w=a+3*l,A=-2*p*(4*s*g+(1-4*f+3*f*f)*(1+v)+g*(14*f-6-i+(8*f-8-2*i)*v)+s*(12*f-8+(10*f-10-i)*v)),R=F(d*(f+g*i-1)+(1-f)*(f*(w*w+4*g)+g*(12*s+4*g)));a-=t=(o*(d+g-1)+2*R-e*(4*d+i))/(o*(2*l*v+2*p*(1+v))+A/R-8*p*(o*(-1+g+d)+2*R)*(1+v)/(i+4*d))}while(t>y&&--c>0);return[h(n)*(F(o*o+4)+o)*m/4,b*a]};var no=4*m+3*F(3),ro=2*F(2*m*F(3)/no),to=un(ro*F(3)/m,ro,no/6);function eo(){return(0,e.A)(to).scale(176.84)}function uo(n,r){return[n*F(1-3*r*r/(m*m)),r]}function oo(){return(0,e.A)(uo).scale(152.63)}function io(n,r){var t=a(r),e=a(n)*t,u=1-e,o=a(n=i(d(n)*t,-d(r))),c=d(n);return[c*(t=F(1-e*e))-o*u,-o*t-c*u]}function ao(){return(0,e.A)(io).rotate([0,-90,45]).scale(124.75).clipAngle(179.999)}function co(n,r){var t=z(n,r);return[(t[0]+n/b)/2,(t[1]+r)/2]}function fo(){return(0,e.A)(co).scale(158.837)}uo.invert=function(n,r){return[n/F(1-3*r*r/(m*m)),r]},io.invert=function(n,r){var t=(n*n+r*r)/-2,e=F(-t*(2+t)),u=r*t+n*e,o=n*t-r*e,a=F(o*o+u*u);return[i(e*u,a*(1+t)),a?-G(e*o/a):0]},co.invert=function(n,r){var t=n,e=r,o=25;do{var i,c=a(e),f=d(e),l=d(2*e),v=f*f,g=c*c,s=d(t),p=a(t/2),h=d(t/2),w=h*h,A=1-g*p*p,m=A?C(c*p)*F(i=1/A):i=0,R=.5*(2*m*c*h+t/b)-n,M=.5*(m*f+e)-r,E=.5*i*(g*w+m*c*p*v)+.5/b,P=i*(s*l/4-m*f*h),k=.125*i*(l*h-m*f*g*s),S=.5*i*(v*p+m*w*c)+.5,x=P*k-S*E,G=(M*P-R*S)/x,N=(R*k-M*E)/x;t-=G,e-=N}while((u(G)>y||u(N)>y)&&--o>0);return[t,e]}}}]);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see 819.2056f122.chunk.js.LICENSE.txt */
|
|
2
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[819],{62101:function(t,e,o){o.d(e,{q:function(){return p}});var i=o(72925),r=o(6788),n=o(79045),s=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),a=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},l="ag-resizer-wrapper",h='<div class="'+l+'">\n <div ref="eTopLeftResizer" class="ag-resizer ag-resizer-topLeft"></div>\n <div ref="eTopResizer" class="ag-resizer ag-resizer-top"></div>\n <div ref="eTopRightResizer" class="ag-resizer ag-resizer-topRight"></div>\n <div ref="eRightResizer" class="ag-resizer ag-resizer-right"></div>\n <div ref="eBottomRightResizer" class="ag-resizer ag-resizer-bottomRight"></div>\n <div ref="eBottomResizer" class="ag-resizer ag-resizer-bottom"></div>\n <div ref="eBottomLeftResizer" class="ag-resizer ag-resizer-bottomLeft"></div>\n <div ref="eLeftResizer" class="ag-resizer ag-resizer-left"></div>\n </div>',p=function(t){function e(e,o){var i=t.call(this)||this;return i.element=e,i.dragStartPosition={x:0,y:0},i.position={x:0,y:0},i.lastSize={width:-1,height:-1},i.positioned=!1,i.resizersAdded=!1,i.resizeListeners=[],i.boundaryEl=null,i.isResizing=!1,i.isMoving=!1,i.resizable={},i.movable=!1,i.currentResizer=null,i.config=Object.assign({},{popup:!1},o),i}return s(e,t),e.prototype.center=function(){var t=this.offsetParent,e=t.clientHeight,o=t.clientWidth/2-this.getWidth()/2,i=e/2-this.getHeight()/2;this.offsetElement(o,i)},e.prototype.initialisePosition=function(){var t=this.config,e=t.centered,o=t.forcePopupParentAsOffsetParent,i=t.minWidth,r=t.width,n=t.minHeight,s=t.height,a=t.x,l=t.y;this.offsetParent||this.setOffsetParent();var h=0,p=0,u=!!this.element.offsetParent;if(u){var d=this.findBoundaryElement(),c=window.getComputedStyle(d);if(null!=c.minWidth){var f=d.offsetWidth-this.element.offsetWidth;p=parseInt(c.minWidth,10)-f}if(null!=c.minHeight){var g=d.offsetHeight-this.element.offsetHeight;h=parseInt(c.minHeight,10)-g}}if(this.minHeight=n||h,this.minWidth=i||p,r&&this.setWidth(r),s&&this.setHeight(s),r&&s||this.refreshSize(),e)this.center();else if(a||l)this.offsetElement(a,l);else if(u&&o&&this.boundaryEl){var w=parseFloat(this.boundaryEl.style.top),y=parseFloat(this.boundaryEl.style.left);this.offsetElement(isNaN(y)?0:y,isNaN(w)?0:w)}this.positioned=!!this.offsetParent},e.prototype.isPositioned=function(){return this.positioned},e.prototype.getPosition=function(){return this.position},e.prototype.setMovable=function(t,e){if(this.config.popup&&t!==this.movable){this.movable=t;var o=this.moveElementDragListener||{eElement:e,onDragStart:this.onMoveStart.bind(this),onDragging:this.onMove.bind(this),onDragStop:this.onMoveEnd.bind(this)};t?(this.dragService.addDragSource(o),this.moveElementDragListener=o):(this.dragService.removeDragSource(o),this.moveElementDragListener=void 0)}},e.prototype.setResizable=function(t){var e=this;if(this.clearResizeListeners(),t?this.addResizers():this.removeResizers(),"boolean"===typeof t){if(!1===t)return;t={topLeft:t,top:t,topRight:t,right:t,bottomRight:t,bottom:t,bottomLeft:t,left:t}}Object.keys(t).forEach((function(o){var i=!!t[o],r=e.getResizerElement(o),n={dragStartPixels:0,eElement:r,onDragStart:function(t){return e.onResizeStart(t,o)},onDragging:e.onResize.bind(e),onDragStop:function(t){return e.onResizeEnd(t,o)}};!!e.resizable[o]===i&&(e.isAlive()||i)||(i?(e.dragService.addDragSource(n),e.resizeListeners.push(n),r.style.pointerEvents="all"):r.style.pointerEvents="none")}))},e.prototype.removeSizeFromEl=function(){this.element.style.removeProperty("height"),this.element.style.removeProperty("width"),this.element.style.removeProperty("flex")},e.prototype.restoreLastSize=function(){this.element.style.flex="0 0 auto";var t=this.lastSize,e=t.height,o=t.width;-1!==o&&(this.element.style.width=o+"px"),-1!==e&&(this.element.style.height=e+"px")},e.prototype.getHeight=function(){return this.element.offsetHeight},e.prototype.setHeight=function(t){var e=this.config.popup,o=this.element,i=!1;if("string"===typeof t&&-1!==t.indexOf("%"))(0,n.setFixedHeight)(o,t),t=(0,n.getAbsoluteHeight)(o),i=!0;else if(this.positioned){var r=this.element.getBoundingClientRect(),s=this.offsetParent.getBoundingClientRect();t=Math.max(this.minHeight,t);var a=this.offsetParent.clientHeight,l=e?this.position.y:r.top,h=e?0:s.top;a&&t+l>a+h&&(t=a-l)}this.getHeight()!==t&&(i?(o.style.maxHeight="unset",o.style.minHeight="unset"):e?(0,n.setFixedHeight)(o,t):(o.style.height=t+"px",o.style.flex="0 0 auto",this.lastSize.height="number"===typeof t?t:parseFloat(t)))},e.prototype.getWidth=function(){return this.element.offsetWidth},e.prototype.setWidth=function(t){var e=this.element,o=this.config.popup,i=!1;if("string"===typeof t&&-1!==t.indexOf("%"))(0,n.setFixedWidth)(e,t),t=(0,n.getAbsoluteWidth)(e),i=!0;else if(this.positioned){t=Math.max(this.minWidth,t);var r=this.offsetParent.clientWidth,s=o?this.position.x:this.element.getBoundingClientRect().left;r&&t+s>r&&(t=r-s)}this.getWidth()!==t&&(i?(e.style.maxWidth="unset",e.style.minWidth="unset"):this.config.popup?(0,n.setFixedWidth)(e,t):(e.style.width=t+"px",e.style.flex=" unset",this.lastSize.width="number"===typeof t?t:parseFloat(t)))},e.prototype.offsetElement=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0);var o=this.config.forcePopupParentAsOffsetParent?this.boundaryEl:this.element;this.popupService.positionPopup({ePopup:o,x:t,y:e,keepWithinBounds:!0}),this.setPosition(parseFloat(o.style.left),parseFloat(o.style.top))},e.prototype.setPosition=function(t,e){this.position.x=t,this.position.y=e},e.prototype.updateDragStartPosition=function(t,e){this.dragStartPosition={x:t,y:e}},e.prototype.calculateMouseMovement=function(t){var e=t.e,o=t.isLeft,i=t.isTop,r=t.anywhereWithin,n=t.topBuffer,s=e.clientX-this.dragStartPosition.x,a=e.clientY-this.dragStartPosition.y;return{movementX:this.shouldSkipX(e,!!o,!!r,s)?0:s,movementY:this.shouldSkipY(e,!!i,n,a)?0:a}},e.prototype.shouldSkipX=function(t,e,o,i){var r=this.element.getBoundingClientRect(),n=this.offsetParent.getBoundingClientRect(),s=this.boundaryEl.getBoundingClientRect(),a=this.config.popup?this.position.x:r.left,l=a<=0&&n.left>=t.clientX||n.right<=t.clientX&&n.right<=s.right;return!!l||(l=e?i<0&&t.clientX>a+n.left||i>0&&t.clientX<a+n.left:o?i<0&&t.clientX>s.right||i>0&&t.clientX<a+n.left:i<0&&t.clientX>s.right||i>0&&t.clientX<s.right)},e.prototype.shouldSkipY=function(t,e,o,i){void 0===o&&(o=0);var r=this.element.getBoundingClientRect(),n=this.offsetParent.getBoundingClientRect(),s=this.boundaryEl.getBoundingClientRect(),a=this.config.popup?this.position.y:r.top,l=a<=0&&n.top>=t.clientY||n.bottom<=t.clientY&&n.bottom<=s.bottom;return!!l||(l=e?i<0&&t.clientY>a+n.top+o||i>0&&t.clientY<a+n.top:i<0&&t.clientY>s.bottom||i>0&&t.clientY<s.bottom)},e.prototype.createResizeMap=function(){var t=this.element;this.resizerMap={topLeft:{element:t.querySelector("[ref=eTopLeftResizer]")},top:{element:t.querySelector("[ref=eTopResizer]")},topRight:{element:t.querySelector("[ref=eTopRightResizer]")},right:{element:t.querySelector("[ref=eRightResizer]")},bottomRight:{element:t.querySelector("[ref=eBottomRightResizer]")},bottom:{element:t.querySelector("[ref=eBottomResizer]")},bottomLeft:{element:t.querySelector("[ref=eBottomLeftResizer]")},left:{element:t.querySelector("[ref=eLeftResizer]")}}},e.prototype.addResizers=function(){if(!this.resizersAdded){var t=this.element;if(t){var e=(new DOMParser).parseFromString(h,"text/html").body;t.appendChild(e.firstChild),this.createResizeMap(),this.resizersAdded=!0}}},e.prototype.removeResizers=function(){this.resizerMap=void 0;var t=this.element.querySelector("."+l);t&&this.element.removeChild(t),this.resizersAdded=!1},e.prototype.getResizerElement=function(t){return this.resizerMap[t].element},e.prototype.onResizeStart=function(t,e){this.boundaryEl=this.findBoundaryElement(),this.positioned||this.initialisePosition(),this.currentResizer={isTop:!!e.match(/top/i),isRight:!!e.match(/right/i),isBottom:!!e.match(/bottom/i),isLeft:!!e.match(/left/i)},this.element.classList.add("ag-resizing"),this.resizerMap[e].element.classList.add("ag-active");var o=this.config,i=o.popup,r=o.forcePopupParentAsOffsetParent;i||r||this.applySizeToSiblings(this.currentResizer.isBottom||this.currentResizer.isTop),this.isResizing=!0,this.updateDragStartPosition(t.clientX,t.clientY)},e.prototype.getSiblings=function(){var t=this.element.parentElement;return t?Array.prototype.slice.call(t.children).filter((function(t){return!t.classList.contains("ag-hidden")})):null},e.prototype.getMinSizeOfSiblings=function(){for(var t=this.getSiblings()||[],e=0,o=0,i=0;i<t.length;i++){var r=t[i],n=!!r.style.flex&&"0 0 auto"!==r.style.flex;if(r!==this.element){var s=this.minHeight||0,a=this.minWidth||0;if(n){var l=window.getComputedStyle(r);l.minHeight&&(s=parseInt(l.minHeight,10)),l.minWidth&&(a=parseInt(l.minWidth,10))}else s=r.offsetHeight,a=r.offsetWidth;e+=s,o+=a}}return{height:e,width:o}},e.prototype.applySizeToSiblings=function(t){var e=null,o=this.getSiblings();if(o){for(var i=0;i<o.length;i++){var r=o[i];r!==e&&(t?r.style.height=r.offsetHeight+"px":r.style.width=r.offsetWidth+"px",r.style.flex="0 0 auto",r===this.element&&(e=o[i+1]))}e&&(e.style.removeProperty("height"),e.style.removeProperty("min-height"),e.style.removeProperty("max-height"),e.style.flex="1 1 auto")}},e.prototype.onResize=function(t){if(this.isResizing&&this.currentResizer){var e=this.config,o=e.popup,i=e.forcePopupParentAsOffsetParent,r=this.currentResizer,n=r.isTop,s=r.isRight,a=r.isBottom,l=r.isLeft,h=s||l,p=a||n,u=this.calculateMouseMovement({e:t,isLeft:l,isTop:n}),d=u.movementX,c=u.movementY,f=this.position.x,g=this.position.y,w=0,y=0;if(h&&d){var v=l?-1:1,C=this.getWidth(),R=C+d*v,m=!1;l&&(f+(w=C-R)<=0||R<=this.minWidth)&&(m=!0,w=0),m||this.setWidth(R)}if(p&&c){v=n?-1:1;var E=this.getHeight(),O=E+c*v,L=!1;n?(g+(y=E-O)<=0||O<=this.minHeight)&&(L=!0,y=0):!this.config.popup&&!this.config.forcePopupParentAsOffsetParent&&E<O&&this.getMinSizeOfSiblings().height+O>this.element.parentElement.offsetHeight&&(L=!0),L||this.setHeight(O)}this.updateDragStartPosition(t.clientX,t.clientY),((o||i)&&w||y)&&this.offsetElement(f+w,g+y)}},e.prototype.onResizeEnd=function(t,e){this.isResizing=!1,this.currentResizer=null,this.boundaryEl=null;var o={type:"resize",api:this.gridOptionsWrapper.getApi(),columnApi:this.gridOptionsWrapper.getColumnApi()};this.element.classList.remove("ag-resizing"),this.resizerMap[e].element.classList.remove("ag-active"),this.dispatchEvent(o)},e.prototype.refreshSize=function(){var t=this.element;this.config.popup&&(this.config.width||this.setWidth(t.offsetWidth),this.config.height||this.setHeight(t.offsetHeight))},e.prototype.onMoveStart=function(t){this.boundaryEl=this.findBoundaryElement(),this.positioned||this.initialisePosition(),this.isMoving=!0,this.element.classList.add("ag-moving"),this.updateDragStartPosition(t.clientX,t.clientY)},e.prototype.onMove=function(t){if(this.isMoving){var e,o=this.position,i=o.x,r=o.y;this.config.calculateTopBuffer&&(e=this.config.calculateTopBuffer());var n=this.calculateMouseMovement({e:t,isTop:!0,anywhereWithin:!0,topBuffer:e}),s=n.movementX,a=n.movementY;this.offsetElement(i+s,r+a),this.updateDragStartPosition(t.clientX,t.clientY)}},e.prototype.onMoveEnd=function(){this.isMoving=!1,this.boundaryEl=null,this.element.classList.remove("ag-moving")},e.prototype.setOffsetParent=function(){this.config.forcePopupParentAsOffsetParent?this.offsetParent=this.popupService.getPopupParent():this.offsetParent=this.element.offsetParent},e.prototype.findBoundaryElement=function(){for(var t=this.element;t;){if("static"!==window.getComputedStyle(t).position)return t;t=t.parentElement}return this.element},e.prototype.clearResizeListeners=function(){for(;this.resizeListeners.length;){var t=this.resizeListeners.pop();this.dragService.removeDragSource(t)}},e.prototype.destroy=function(){t.prototype.destroy.call(this),this.moveElementDragListener&&this.dragService.removeDragSource(this.moveElementDragListener),this.clearResizeListeners(),this.removeResizers()},a([(0,r.ds)("popupService")],e.prototype,"popupService",void 0),a([(0,r.ds)("dragService")],e.prototype,"dragService",void 0),e}(i.X)},19057:function(t,e,o){o.d(e,{u:function(){return f}});var i=o(85302),r=o(72925),n=o(16892),s=o(6788),a=o(68316),l=o(24436),h=o(25644),p=o(20635),u=o(75570),d=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),c=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},f=function(t){function e(e,o,i,r){var n=t.call(this)||this;return n.columnOrGroup=e,n.eCell=o,n.ariaEl=n.eCell.querySelector("[role=columnheader]")||n.eCell,n.colsSpanning=r,n.beans=i,n}return d(e,t),e.prototype.setColsSpanning=function(t){this.colsSpanning=t,this.onLeftChanged()},e.prototype.getColumnOrGroup=function(){return this.beans.gridOptionsWrapper.isEnableRtl()&&this.colsSpanning?(0,l.last)(this.colsSpanning):this.columnOrGroup},e.prototype.postConstruct=function(){this.addManagedListener(this.columnOrGroup,i.V.EVENT_LEFT_CHANGED,this.onLeftChanged.bind(this)),this.setLeftFirstTime(),this.addManagedListener(this.eventService,p.s.EVENT_DISPLAYED_COLUMNS_WIDTH_CHANGED,this.onLeftChanged.bind(this)),this.addManagedListener(this.beans.gridOptionsWrapper,u.a.PROP_DOM_LAYOUT,this.onLeftChanged.bind(this))},e.prototype.setLeftFirstTime=function(){var t=this.beans.gridOptionsWrapper.isSuppressColumnMoveAnimation(),e=(0,h.exists)(this.columnOrGroup.getOldLeft());this.beans.columnAnimationService.isActive()&&e&&!t?this.animateInLeft():this.onLeftChanged()},e.prototype.animateInLeft=function(){var t=this,e=this.getColumnOrGroup(),o=e.getLeft(),i=e.getOldLeft(),r=this.modifyLeftForPrintLayout(e,i),n=this.modifyLeftForPrintLayout(e,o);this.setLeft(r),this.actualLeft=n,this.beans.columnAnimationService.executeNextVMTurn((function(){t.actualLeft===n&&t.setLeft(n)}))},e.prototype.onLeftChanged=function(){var t=this.getColumnOrGroup(),e=t.getLeft();this.actualLeft=this.modifyLeftForPrintLayout(t,e),this.setLeft(this.actualLeft)},e.prototype.modifyLeftForPrintLayout=function(t,e){if(!(this.beans.gridOptionsWrapper.getDomLayout()===n.Y.DOM_LAYOUT_PRINT))return e;if(t.getPinned()===n.Y.PINNED_LEFT)return e;var o=this.beans.columnModel.getDisplayedColumnsLeftWidth();return t.getPinned()===n.Y.PINNED_RIGHT?o+this.beans.columnModel.getBodyContainerWidth()+e:o+e},e.prototype.setLeft=function(t){var e;if((0,h.exists)(t)&&(this.eCell.style.left=t+"px"),this.columnOrGroup instanceof i.V)e=this.columnOrGroup;else{var o=this.columnOrGroup.getLeafColumns();if(!o.length)return;o.length>1&&(0,a.setAriaColSpan)(this.ariaEl,o.length),e=o[0]}var r=this.beans.columnModel.getAriaColumnIndex(e);(0,a.setAriaColIndex)(this.ariaEl,r)},c([s.o7],e.prototype,"postConstruct",null),e}(r.X)},41743:function(t,e,o){o.d(e,{q:function(){return n}});var i=o(19158),r=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),n=function(t){function e(){return t.call(this)||this}return r(e,t),e.prototype.destroy=function(){t.prototype.destroy.call(this)},e.prototype.init=function(t){var o=this.gridOptionsWrapper.getOverlayLoadingTemplate()?this.gridOptionsWrapper.getOverlayLoadingTemplate():e.DEFAULT_LOADING_OVERLAY_TEMPLATE,i=this.gridOptionsWrapper.getLocaleTextFunc(),r=o.replace("[LOADING...]",i("loadingOoo","Loading..."));this.setTemplate(r)},e.DEFAULT_LOADING_OVERLAY_TEMPLATE='<span class="ag-overlay-loading-center">[LOADING...]</span>',e}(i.u)},57959:function(t,e,o){o.d(e,{M:function(){return n}});var i=o(19158),r=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),n=function(t){function e(){return t.call(this)||this}return r(e,t),e.prototype.destroy=function(){t.prototype.destroy.call(this)},e.prototype.init=function(t){var o=this.gridOptionsWrapper.getOverlayNoRowsTemplate()?this.gridOptionsWrapper.getOverlayNoRowsTemplate():e.DEFAULT_NO_ROWS_TEMPLATE,i=this.gridOptionsWrapper.getLocaleTextFunc(),r=o.replace("[NO_ROWS_TO_SHOW]",i("noRowsToShow","No Rows To Show"));this.setTemplate(r)},e.DEFAULT_NO_ROWS_TEMPLATE='<span class="ag-overlay-no-rows-center">[NO_ROWS_TO_SHOW]</span>',e}(i.u)},6762:function(t,e,o){o.d(e,{h:function(){return d}});var i,r=o(6788),n=o(19158),s=o(52442),a=o(79045),l=o(76962),h=o(20635),p=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),u=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s};!function(t){t[t.Loading=0]="Loading",t[t.NoRows=1]="NoRows"}(i||(i={}));var d=function(t){function e(){var o=t.call(this,e.TEMPLATE)||this;return o.inProgress=!1,o.destroyRequested=!1,o.manuallyDisplayed=!1,o}return p(e,t),e.prototype.updateLayoutClasses=function(t,e){var o=this.eOverlayWrapper.classList;o.toggle(l.g.AUTO_HEIGHT,e.autoHeight),o.toggle(l.g.NORMAL,e.normal),o.toggle(l.g.PRINT,e.print)},e.prototype.postConstruct=function(){this.createManagedBean(new l.Z(this)),this.setDisplayed(!1),this.addManagedListener(this.eventService,h.s.EVENT_ROW_DATA_CHANGED,this.onRowDataChanged.bind(this)),this.addManagedListener(this.eventService,h.s.EVENT_ROW_DATA_UPDATED,this.onRowDataChanged.bind(this)),this.addManagedListener(this.eventService,h.s.EVENT_NEW_COLUMNS_LOADED,this.onNewColumnsLoaded.bind(this)),this.gridOptionsWrapper.isRowModelDefault()&&!this.gridOptionsWrapper.getRowData()&&this.showLoadingOverlay(),this.gridApi.registerOverlayWrapperComp(this)},e.prototype.setWrapperTypeClass=function(t){var e=this.eOverlayWrapper.classList;e.toggle("ag-overlay-loading-wrapper",t===i.Loading),e.toggle("ag-overlay-no-rows-wrapper",t===i.NoRows)},e.prototype.showLoadingOverlay=function(){if(!this.gridOptionsWrapper.isSuppressLoadingOverlay()){var t=this.userComponentFactory.getLoadingOverlayCompDetails({}).newAgStackInstance();this.showOverlay(t,i.Loading)}},e.prototype.showNoRowsOverlay=function(){if(!this.gridOptionsWrapper.isSuppressNoRowsOverlay()){var t=this.userComponentFactory.getNoRowsOverlayCompDetails({}).newAgStackInstance();this.showOverlay(t,i.NoRows)}},e.prototype.showOverlay=function(t,e){var o=this;this.inProgress||(this.setWrapperTypeClass(e),this.destroyActiveOverlay(),this.inProgress=!0,t&&t.then((function(t){o.inProgress=!1,o.eOverlayWrapper.appendChild(t.getGui()),o.activeOverlay=t,o.destroyRequested&&(o.destroyRequested=!1,o.destroyActiveOverlay())})),this.manuallyDisplayed=this.columnModel.isReady()&&!this.paginationProxy.isEmpty(),this.setDisplayed(!0))},e.prototype.destroyActiveOverlay=function(){this.inProgress?this.destroyRequested=!0:this.activeOverlay&&(this.activeOverlay=this.getContext().destroyBean(this.activeOverlay),(0,a.clearElement)(this.eOverlayWrapper))},e.prototype.hideOverlay=function(){this.manuallyDisplayed=!1,this.destroyActiveOverlay(),this.setDisplayed(!1)},e.prototype.destroy=function(){this.destroyActiveOverlay(),t.prototype.destroy.call(this)},e.prototype.showOrHideOverlay=function(){var t=this.paginationProxy.isEmpty(),e=this.gridOptionsWrapper.isSuppressNoRowsOverlay();t&&!e?this.showNoRowsOverlay():this.hideOverlay()},e.prototype.onRowDataChanged=function(){this.showOrHideOverlay()},e.prototype.onNewColumnsLoaded=function(){!this.columnModel.isReady()||this.paginationProxy.isEmpty()||this.manuallyDisplayed||this.hideOverlay()},e.TEMPLATE='\n <div class="ag-overlay" aria-hidden="true">\n <div class="ag-overlay-panel">\n <div class="ag-overlay-wrapper" ref="eOverlayWrapper"></div>\n </div>\n </div>',u([(0,r.ds)("userComponentFactory")],e.prototype,"userComponentFactory",void 0),u([(0,r.ds)("paginationProxy")],e.prototype,"paginationProxy",void 0),u([(0,r.ds)("gridApi")],e.prototype,"gridApi",void 0),u([(0,r.ds)("columnModel")],e.prototype,"columnModel",void 0),u([(0,s.P)("eOverlayWrapper")],e.prototype,"eOverlayWrapper",void 0),u([r.o7],e.prototype,"postConstruct",null),e}(n.u)},24420:function(t,e,o){o.d(e,{c:function(){return h}});var i=o(19158),r=o(79045),n=o(57438),s=o(97998),a=o(68316),l=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),h=function(t){function e(e,o,i){var n=t.call(this)||this;n.cellComps={},n.beans=o,n.rowCtrl=e,n.setTemplate('<div comp-id="'+n.getCompId()+'" style="'+n.getInitialStyle()+'"/>');var s=n.getGui(),l=s.style,h={setDomOrder:function(t){return n.domOrder=t},setCellCtrls:function(t){return n.setCellCtrls(t)},showFullWidth:function(t){return n.showFullWidth(t)},getFullWidthCellRenderer:function(){return n.getFullWidthCellRenderer()},addOrRemoveCssClass:function(t,e){return n.addOrRemoveCssClass(t,e)},setUserStyles:function(t){return(0,r.addStylesToElement)(s,t)},setTop:function(t){return l.top=t},setTransform:function(t){return l.transform=t},setRowIndex:function(t){return s.setAttribute("row-index",t)},setRole:function(t){return(0,a.setAriaRole)(s,t)},setRowId:function(t){return s.setAttribute("row-id",t)},setRowBusinessKey:function(t){return s.setAttribute("row-business-key",t)},setTabIndex:function(t){return s.setAttribute("tabindex",t.toString())}};return e.setComp(h,n.getGui(),i),n}return l(e,t),e.prototype.getInitialStyle=function(){var t=this.rowCtrl.getInitialTransform(),e=this.rowCtrl.getInitialRowTop();return t?"transform: "+t:"top: "+e},e.prototype.showFullWidth=function(t){var e=this,o=t.newAgStackInstance();o&&o.then((function(t){if(e.isAlive()){var o=t.getGui();e.getGui().appendChild(o),e.rowCtrl.setupDetailRowAutoHeight(o),e.setFullWidthRowComp(t)}else e.beans.context.destroyBean(t)}))},e.prototype.setCellCtrls=function(t){var e=this,o=Object.assign({},this.cellComps);t.forEach((function(t){var i=t.getInstanceId();null==e.cellComps[i]?e.newCellComp(t):o[i]=null}));var i=(0,s.getAllValuesInObject)(o).filter((function(t){return null!=t}));this.destroyCells(i),this.ensureDomOrder(t)},e.prototype.ensureDomOrder=function(t){var e=this;if(this.domOrder){var o=[];t.forEach((function(t){var i=e.cellComps[t.getInstanceId()];i&&o.push(i.getGui())})),(0,r.setDomChildOrder)(this.getGui(),o)}},e.prototype.newCellComp=function(t){var e=new n.e(this.beans,t,this.rowCtrl.isPrintLayout(),this.getGui(),this.rowCtrl.isEditing());this.cellComps[t.getInstanceId()]=e,this.getGui().appendChild(e.getGui())},e.prototype.destroy=function(){t.prototype.destroy.call(this),this.destroyAllCells()},e.prototype.destroyAllCells=function(){var t=(0,s.getAllValuesInObject)(this.cellComps).filter((function(t){return null!=t}));this.destroyCells(t)},e.prototype.setFullWidthRowComp=function(t){var e=this;this.fullWidthCellRenderer&&console.error("AG Grid - should not be setting fullWidthRowComponent twice"),this.fullWidthCellRenderer=t,this.addDestroyFunc((function(){e.fullWidthCellRenderer=e.beans.context.destroyBean(e.fullWidthCellRenderer)}))},e.prototype.getFullWidthCellRenderer=function(){return this.fullWidthCellRenderer},e.prototype.destroyCells=function(t){var e=this;t.forEach((function(t){if(t){var o=t.getCtrl().getInstanceId();e.cellComps[o]===t&&(t.detach(),t.destroy(),e.cellComps[o]=null)}}))},e}(i.u)},25778:function(t,e,o){o.d(e,{W:function(){return l}});var i=o(25644),r=o(24436),n=o(6788),s=o(16892),a=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},l=function(){function t(){}return t.prototype.getInitialRowClasses=function(t){var e=[];return(0,i.exists)(t.extraCssClass)&&e.push(t.extraCssClass),e.push("ag-row"),e.push(t.rowFocused?"ag-row-focus":"ag-row-no-focus"),t.fadeRowIn&&e.push("ag-opacity-zero"),e.push(t.rowIsEven?"ag-row-even":"ag-row-odd"),t.rowNode.isRowPinned()&&e.push("ag-row-pinned"),t.rowNode.isSelected()&&e.push("ag-row-selected"),t.rowNode.footer&&e.push("ag-row-footer"),e.push("ag-row-level-"+t.rowLevel),t.rowNode.stub&&e.push("ag-row-loading"),t.fullWidthRow&&e.push("ag-full-width-row"),t.expandable&&(e.push("ag-row-group"),e.push(t.rowNode.expanded?"ag-row-group-expanded":"ag-row-group-contracted")),t.rowNode.dragging&&e.push("ag-row-dragging"),(0,r.pushAll)(e,this.processClassesFromGridOptions(t.rowNode)),(0,r.pushAll)(e,this.preProcessRowClassRules(t.rowNode)),e.push(t.printLayout?"ag-row-position-relative":"ag-row-position-absolute"),t.firstRowOnPage&&e.push("ag-row-first"),t.lastRowOnPage&&e.push("ag-row-last"),t.fullWidthRow&&(t.pinned===s.Y.PINNED_LEFT&&e.push("ag-cell-last-left-pinned"),t.pinned===s.Y.PINNED_RIGHT&&e.push("ag-cell-first-right-pinned")),e},t.prototype.processClassesFromGridOptions=function(t){var e=[],o=function(t){"string"===typeof t?e.push(t):Array.isArray(t)&&t.forEach((function(t){return e.push(t)}))},i=this.gridOptionsWrapper.getRowClass();if(i){if("function"===typeof i)return console.warn("AG Grid: rowClass should not be a function, please use getRowClass instead"),[];o(i)}var r=this.gridOptionsWrapper.getRowClassFunc();r&&o(r({data:t.data,node:t,rowIndex:t.rowIndex}));return e},t.prototype.preProcessRowClassRules=function(t){var e=[];return this.processRowClassRules(t,(function(t){e.push(t)}),(function(t){})),e},t.prototype.processRowClassRules=function(t,e,o){var i={data:t.data,node:t,rowIndex:t.rowIndex,api:this.gridOptionsWrapper.getApi(),columnApi:this.gridOptionsWrapper.getColumnApi(),context:this.gridOptionsWrapper.getContext()};this.stylingService.processClassRules(this.gridOptionsWrapper.rowClassRules(),i,e,o)},t.prototype.calculateRowLevel=function(t){return t.group?t.level:t.parent?t.parent.level+1:0},a([(0,n.ds)("stylingService")],t.prototype,"stylingService",void 0),a([(0,n.ds)("gridOptionsWrapper")],t.prototype,"gridOptionsWrapper",void 0),t=a([(0,n.dR)("rowCssClassCalculator")],t)}()},38338:function(t,e,o){o.d(e,{C:function(){return O}});var i,r=o(16892),n=o(72925),s=o(79659),a=o(88114),l=o(72129),h=o(94189),p=o(42614),u=o(68316),d=o(79045),c=o(18117),f=o(19837),g=o(25644),w=o(7884),y=o(60385),v=o(42042),C=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),R=function(t,e){var o="function"===typeof Symbol&&t[Symbol.iterator];if(!o)return t;var i,r,n=o.call(t),s=[];try{for(;(void 0===e||e-- >0)&&!(i=n.next()).done;)s.push(i.value)}catch(a){r={error:a}}finally{try{i&&!i.done&&(o=n.return)&&o.call(n)}finally{if(r)throw r.error}}return s},m=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(R(arguments[e]));return t};!function(t){t.Normal="Normal",t.FullWidth="FullWidth",t.FullWidthLoading="FullWidthLoading",t.FullWidthGroup="FullWidthGroup",t.FullWidthDetail="FullWidthDetail"}(i||(i={}));var E=0,O=function(t){function e(e,o,i,r,n){var s=t.call(this)||this;return s.allRowGuis=[],s.active=!0,s.centerCellCtrls={list:[],map:{}},s.leftCellCtrls={list:[],map:{}},s.rightCellCtrls={list:[],map:{}},s.lastMouseDownOnDragger=!1,s.updateColumnListsPending=!1,s.beans=o,s.rowNode=e,s.paginationPage=s.beans.paginationProxy.getCurrentPage(),s.useAnimationFrameForCreate=r,s.printLayout=n,s.instanceId=e.id+"-"+E++,s.setAnimateFlags(i),s.rowFocused=s.beans.focusService.isRowFocused(s.rowNode.rowIndex,s.rowNode.rowPinned),s.rowLevel=s.beans.rowCssClassCalculator.calculateRowLevel(s.rowNode),s.setRowType(),s.addListeners(),s.setInitialRowTop(),s}return C(e,t),e.prototype.getBeans=function(){return this.beans},e.prototype.getInstanceId=function(){return this.instanceId},e.prototype.setComp=function(t,e,o){var i={rowComp:t,element:e,containerType:o};this.allRowGuis.push(i),o===l.uv.LEFT?this.leftGui=i:o===l.uv.RIGHT?this.rightGui=i:o===l.uv.FULL_WIDTH?this.fullWidthGui=i:this.centerGui=i;var r=null!=this.leftGui&&null!=this.rightGui&&null!=this.centerGui,n=null!=this.fullWidthGui;(r||n)&&this.initialiseRowComps()},e.prototype.isCacheable=function(){return this.rowType===i.FullWidthDetail&&this.beans.gridOptionsWrapper.isKeepDetailRows()},e.prototype.setCached=function(t){var e=t?"none":"";this.allRowGuis.forEach((function(t){return t.element.style.display=e}))},e.prototype.initialiseRowComps=function(){var t=this,o=this.beans.gridOptionsWrapper;this.onRowHeightChanged(),this.updateRowIndexes(),this.setFocusedClasses(),this.setStylesFromGridOptions(),o.isRowSelection()&&this.rowNode.selectable&&this.onRowSelected(),this.updateColumnLists(!this.useAnimationFrameForCreate),this.slideRowIn&&(0,f.executeNextVMTurn)(this.onTopChanged.bind(this)),this.fadeRowIn&&(0,f.executeNextVMTurn)((function(){t.allRowGuis.forEach((function(t){return t.rowComp.addOrRemoveCssClass("ag-opacity-zero",!1)}))}));var i=this.getRowBusinessKey(),r=(0,w.escapeString)(this.rowNode.id),n=(0,w.escapeString)(i);this.allRowGuis.forEach((function(i){var s=i.rowComp;s.setRole("row"),t.getInitialRowClasses(i.containerType).forEach((function(t){return s.addOrRemoveCssClass(t,!0)})),t.rowNode.group&&(0,u.setAriaExpanded)(i.element,1==t.rowNode.expanded),null!=r&&s.setRowId(r),null!=n&&s.setRowBusinessKey(n),t.isFullWidth()&&!t.beans.gridOptionsWrapper.isSuppressCellFocus()&&s.setTabIndex(-1),o.setDomData(i.element,e.DOM_DATA_KEY_ROW_CTRL,t),t.addDestroyFunc((function(){return o.setDomData(i.element,e.DOM_DATA_KEY_ROW_CTRL,null)})),t.useAnimationFrameForCreate?t.beans.animationFrameService.createTask(t.addHoverFunctionality.bind(t,i.element),t.rowNode.rowIndex,"createTasksP2"):t.addHoverFunctionality(i.element),t.isFullWidth()&&t.setupFullWidth(i),o.isRowDragEntireRow()&&t.addRowDraggerToRow(i),t.useAnimationFrameForCreate&&t.beans.animationFrameService.addDestroyTask((function(){t.isAlive()&&i.rowComp.addOrRemoveCssClass("ag-after-created",!0)}))})),this.executeProcessRowPostCreateFunc()},e.prototype.addRowDraggerToRow=function(t){if(this.beans.gridOptionsWrapper.isEnableRangeSelection())(0,f.doOnce)((function(){console.warn("AG Grid: Setting `rowDragEntireRow: true` in the gridOptions doesn't work with `enableRangeSelection: true`")}),"rowDragAndRangeSelectionEnabled");else{var e=new v.O((function(){return"1 row"}),this.rowNode,void 0,t.element,void 0,!0);this.createManagedBean(e,this.beans.context)}},e.prototype.setupFullWidth=function(t){var e=this.getPinnedForContainer(t.containerType),o=this.createFullWidthParams(t.element,e),r=p.s.isRegistered(h.z.MasterDetailModule);if(this.rowType!=i.FullWidthDetail||r){var n;switch(this.rowType){case i.FullWidthDetail:n=this.beans.userComponentFactory.getFullWidthDetailCellRendererDetails(o);break;case i.FullWidthGroup:n=this.beans.userComponentFactory.getFullWidthGroupCellRendererDetails(o);break;case i.FullWidthLoading:n=this.beans.userComponentFactory.getFullWidthLoadingCellRendererDetails(o);break;default:n=this.beans.userComponentFactory.getFullWidthCellRendererDetails(o)}t.rowComp.showFullWidth(n)}else p.s.isPackageBased()?console.warn("AG Grid: cell renderer 'agDetailCellRenderer' (for master detail) not found. Can only be used with ag-grid-enterprise package."):console.warn("AG Grid: cell renderer 'agDetailCellRenderer' (for master detail) not found. Can only be used with AG Grid Enterprise Module "+h.z.MasterDetailModule)},e.prototype.isPrintLayout=function(){return this.printLayout},e.prototype.getCellElement=function(t){var e=this.getCellCtrl(t);return e?e.getGui():null},e.prototype.executeProcessRowPostCreateFunc=function(){var t=this.beans.gridOptionsWrapper.getProcessRowPostCreateFunc();t&&t({eRow:this.centerGui?this.centerGui.element:void 0,ePinnedLeftRow:this.leftGui?this.leftGui.element:void 0,ePinnedRightRow:this.rightGui?this.rightGui.element:void 0,node:this.rowNode,rowIndex:this.rowNode.rowIndex,addRenderedRowListener:this.addEventListener.bind(this)})},e.prototype.setRowType=function(){var t=this.rowNode.stub,e=this.rowNode.isFullWidthCell(),o=this.beans.doingMasterDetail&&this.rowNode.detail,r=this.beans.columnModel.isPivotMode(),n=!!this.rowNode.group&&!this.rowNode.footer&&this.beans.gridOptionsWrapper.isGroupUseEntireRow(r);this.rowType=t?i.FullWidthLoading:o?i.FullWidthDetail:e?i.FullWidth:n?i.FullWidthGroup:i.Normal},e.prototype.updateColumnLists=function(t){var e=this;(void 0===t&&(t=!1),this.isFullWidth())||(t||this.beans.gridOptionsWrapper.isSuppressAnimationFrame()||this.printLayout?this.updateColumnListsImpl():this.updateColumnListsPending||(this.beans.animationFrameService.createTask((function(){e.active&&e.updateColumnListsImpl()}),this.rowNode.rowIndex,"createTasksP1"),this.updateColumnListsPending=!0))},e.prototype.createCellCtrls=function(t,e,o){var i=this;void 0===o&&(o=null);var r={list:[],map:{}},n=function(t,e){r.list.push(e),r.map[t]=e};return e.forEach((function(e){var o=e.getInstanceId(),r=t.map[o];r||(r=new y.w(e,i.rowNode,i.beans,i)),n(o,r)})),t.list.forEach((function(t){null!=r.map[t.getColumn().getInstanceId()]||(!i.isCellEligibleToBeRemoved(t,o)?n(t.getColumn().getInstanceId(),t):t.destroy())})),r},e.prototype.updateColumnListsImpl=function(){var t=this;this.updateColumnListsPending=!1;var e=this.beans.columnModel;if(this.printLayout)this.centerCellCtrls=this.createCellCtrls(this.centerCellCtrls,e.getAllDisplayedColumns()),this.leftCellCtrls={list:[],map:{}},this.rightCellCtrls={list:[],map:{}};else{var o=e.getViewportCenterColumnsForRow(this.rowNode);this.centerCellCtrls=this.createCellCtrls(this.centerCellCtrls,o);var i=e.getDisplayedLeftColumnsForRow(this.rowNode);this.leftCellCtrls=this.createCellCtrls(this.leftCellCtrls,i,r.Y.PINNED_LEFT);var n=e.getDisplayedRightColumnsForRow(this.rowNode);this.rightCellCtrls=this.createCellCtrls(this.rightCellCtrls,n,r.Y.PINNED_RIGHT)}this.allRowGuis.forEach((function(e){var o=e.containerType===l.uv.LEFT?t.leftCellCtrls:e.containerType===l.uv.RIGHT?t.rightCellCtrls:t.centerCellCtrls;e.rowComp.setCellCtrls(o.list)}))},e.prototype.isCellEligibleToBeRemoved=function(t,e){var o=!0;if(t.getColumn().getPinned()!=e)return o;var i=t.isEditing(),r=this.beans.focusService.isCellFocused(t.getCellPosition());if(i||r){var n=t.getColumn();return!(this.beans.columnModel.getAllDisplayedColumns().indexOf(n)>=0)&&o}return o},e.prototype.setAnimateFlags=function(t){if(t){var e=(0,g.exists)(this.rowNode.oldRowTop);this.slideRowIn=e,this.fadeRowIn=!e}else this.slideRowIn=!1,this.fadeRowIn=!1},e.prototype.isEditing=function(){return this.editingRow},e.prototype.stopRowEditing=function(t){this.stopEditing(t)},e.prototype.isFullWidth=function(){return this.rowType!==i.Normal},e.prototype.getRowType=function(){return this.rowType},e.prototype.refreshFullWidth=function(){var t=this,e=function(e,o){if(!e)return!0;var i=e.rowComp.getFullWidthCellRenderer();if(!i)return!1;if(!i.refresh)return!1;var r=t.createFullWidthParams(e.element,o);return i.refresh(r)},o=e(this.fullWidthGui,null),i=e(this.centerGui,null),n=e(this.leftGui,r.Y.PINNED_LEFT),s=e(this.rightGui,r.Y.PINNED_RIGHT);return o&&i&&n&&s},e.prototype.addListeners=function(){this.addManagedListener(this.rowNode,s.T.EVENT_HEIGHT_CHANGED,this.onRowHeightChanged.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_ROW_SELECTED,this.onRowSelected.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_ROW_INDEX_CHANGED,this.onRowIndexChanged.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_TOP_CHANGED,this.onTopChanged.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_EXPANDED_CHANGED,this.updateExpandedCss.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_HAS_CHILDREN_CHANGED,this.updateExpandedCss.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_DATA_CHANGED,this.onRowNodeDataChanged.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_CELL_CHANGED,this.onRowNodeCellChanged.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_HIGHLIGHT_CHANGED,this.onRowNodeHighlightChanged.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_DRAGGING_CHANGED,this.onRowNodeDraggingChanged.bind(this)),this.addManagedListener(this.rowNode,s.T.EVENT_UI_LEVEL_CHANGED,this.onUiLevelChanged.bind(this));var t=this.beans.eventService;this.addManagedListener(t,a.s.EVENT_PAGINATION_PIXEL_OFFSET_CHANGED,this.onPaginationPixelOffsetChanged.bind(this)),this.addManagedListener(t,a.s.EVENT_HEIGHT_SCALE_CHANGED,this.onTopChanged.bind(this)),this.addManagedListener(t,a.s.EVENT_DISPLAYED_COLUMNS_CHANGED,this.onDisplayedColumnsChanged.bind(this)),this.addManagedListener(t,a.s.EVENT_VIRTUAL_COLUMNS_CHANGED,this.onVirtualColumnsChanged.bind(this)),this.addManagedListener(t,a.s.EVENT_CELL_FOCUSED,this.onCellFocusChanged.bind(this)),this.addManagedListener(t,a.s.EVENT_PAGINATION_CHANGED,this.onPaginationChanged.bind(this)),this.addManagedListener(t,a.s.EVENT_MODEL_UPDATED,this.onModelUpdated.bind(this)),this.addManagedListener(t,a.s.EVENT_COLUMN_MOVED,this.onColumnMoved.bind(this)),this.addListenersForCellComps()},e.prototype.onColumnMoved=function(){this.updateColumnLists()},e.prototype.addListenersForCellComps=function(){var t=this;this.addManagedListener(this.rowNode,s.T.EVENT_ROW_INDEX_CHANGED,(function(){t.getAllCellCtrls().forEach((function(t){return t.onRowIndexChanged()}))})),this.addManagedListener(this.rowNode,s.T.EVENT_CELL_CHANGED,(function(e){t.getAllCellCtrls().forEach((function(t){return t.onCellChanged(e)}))}))},e.prototype.onRowNodeDataChanged=function(t){this.getAllCellCtrls().forEach((function(e){return e.refreshCell({suppressFlash:!t.update,newData:!t.update})})),this.onRowSelected(),this.postProcessCss()},e.prototype.onRowNodeCellChanged=function(){this.postProcessCss()},e.prototype.postProcessCss=function(){this.setStylesFromGridOptions(),this.postProcessClassesFromGridOptions(),this.postProcessRowClassRules(),this.postProcessRowDragging()},e.prototype.onRowNodeHighlightChanged=function(){var t=this.rowNode.highlighted;this.allRowGuis.forEach((function(e){var o=t===s.m.Above,i=t===s.m.Below;e.rowComp.addOrRemoveCssClass("ag-row-highlight-above",o),e.rowComp.addOrRemoveCssClass("ag-row-highlight-below",i)}))},e.prototype.onRowNodeDraggingChanged=function(){this.postProcessRowDragging()},e.prototype.postProcessRowDragging=function(){var t=this.rowNode.dragging;this.allRowGuis.forEach((function(e){return e.rowComp.addOrRemoveCssClass("ag-row-dragging",t)}))},e.prototype.updateExpandedCss=function(){var t=this.rowNode.isExpandable(),e=1==this.rowNode.expanded;this.allRowGuis.forEach((function(o){o.rowComp.addOrRemoveCssClass("ag-row-group",t),o.rowComp.addOrRemoveCssClass("ag-row-group-expanded",t&&e),o.rowComp.addOrRemoveCssClass("ag-row-group-contracted",t&&!e),(0,u.setAriaExpanded)(o.element,t&&e)}))},e.prototype.onDisplayedColumnsChanged=function(){this.updateColumnLists(!0),this.beans.columnModel.wasAutoRowHeightEverActive()&&this.rowNode.checkAutoHeights()},e.prototype.onVirtualColumnsChanged=function(){this.updateColumnLists()},e.prototype.getRowPosition=function(){return{rowPinned:(0,g.makeNull)(this.rowNode.rowPinned),rowIndex:this.rowNode.rowIndex}},e.prototype.onKeyboardNavigate=function(t){var e=this.allRowGuis.find((function(e){return e.element.contains(t.target)}));if((e?e.element:null)===t.target){var o=this.rowNode,i=this.beans.focusService.getFocusedCell(),r={rowIndex:o.rowIndex,rowPinned:o.rowPinned,column:i&&i.column};this.beans.navigationService.navigateToNextCell(t,t.key,r,!0),t.preventDefault()}},e.prototype.onTabKeyDown=function(t){if(!t.defaultPrevented&&!(0,c.isStopPropagationForAgGrid)(t)){var e=this.allRowGuis.find((function(e){return e.element.contains(t.target)})),o=e?e.element:null,i=o===t.target,r=null;i||(r=this.beans.focusService.findNextFocusableElement(o,!1,t.shiftKey)),(this.isFullWidth()&&i||!r)&&this.beans.navigationService.onTabKeyDown(this,t)}},e.prototype.onFullWidthRowFocused=function(t){var e,o=this.rowNode,i=this.isFullWidth()&&t.rowIndex===o.rowIndex&&t.rowPinned==o.rowPinned,r=this.fullWidthGui?this.fullWidthGui.element:null===(e=this.centerGui)||void 0===e?void 0:e.element;r&&(r.classList.toggle("ag-full-width-focus",i),i&&r.focus({preventScroll:!0}))},e.prototype.refreshCell=function(t){this.centerCellCtrls=this.removeCellCtrl(this.centerCellCtrls,t),this.leftCellCtrls=this.removeCellCtrl(this.leftCellCtrls,t),this.rightCellCtrls=this.removeCellCtrl(this.rightCellCtrls,t),this.updateColumnLists()},e.prototype.removeCellCtrl=function(t,e){var o={list:[],map:{}};return t.list.forEach((function(t){t!==e&&(o.list.push(t),o.map[t.getInstanceId()]=t)})),o},e.prototype.onMouseEvent=function(t,e){switch(t){case"dblclick":this.onRowDblClick(e);break;case"click":this.onRowClick(e);break;case"touchstart":case"mousedown":this.onRowMouseDown(e)}},e.prototype.createRowEvent=function(t,e){return{type:t,node:this.rowNode,data:this.rowNode.data,rowIndex:this.rowNode.rowIndex,rowPinned:this.rowNode.rowPinned,context:this.beans.gridOptionsWrapper.getContext(),api:this.beans.gridOptionsWrapper.getApi(),columnApi:this.beans.gridOptionsWrapper.getColumnApi(),event:e}},e.prototype.createRowEventWithSource=function(t,e){var o=this.createRowEvent(t,e);return o.source=this,o},e.prototype.onRowDblClick=function(t){if(!(0,c.isStopPropagationForAgGrid)(t)){var e=this.createRowEventWithSource(a.s.EVENT_ROW_DOUBLE_CLICKED,t);this.beans.eventService.dispatchEvent(e)}},e.prototype.onRowMouseDown=function(t){if(this.lastMouseDownOnDragger=(0,d.isElementChildOfClass)(t.target,"ag-row-drag",3),this.isFullWidth()){var e=this.rowNode,o=this.beans.columnModel;this.beans.focusService.setFocusedCell(e.rowIndex,o.getAllDisplayedColumns()[0],e.rowPinned,!0)}},e.prototype.onRowClick=function(t){if(!((0,c.isStopPropagationForAgGrid)(t)||this.lastMouseDownOnDragger)){var e=this.createRowEventWithSource(a.s.EVENT_ROW_CLICKED,t);this.beans.eventService.dispatchEvent(e);var o=t.ctrlKey||t.metaKey,i=t.shiftKey;if(!(this.beans.gridOptionsWrapper.isGroupSelectsChildren()&&this.rowNode.group||!this.rowNode.selectable||this.rowNode.rowPinned||!this.beans.gridOptionsWrapper.isRowSelection()||this.beans.gridOptionsWrapper.isSuppressRowClickSelection())){var r=this.beans.gridOptionsWrapper.isRowMultiSelectWithClick(),n=!this.beans.gridOptionsWrapper.isSuppressRowDeselection();if(this.rowNode.isSelected())r?this.rowNode.setSelectedParams({newValue:!1}):o?n&&this.rowNode.setSelectedParams({newValue:!1}):this.rowNode.setSelectedParams({newValue:!0,clearSelection:!i,rangeSelect:i});else{var s=!r&&!o;this.rowNode.setSelectedParams({newValue:!0,clearSelection:s,rangeSelect:i})}}}},e.prototype.setupDetailRowAutoHeight=function(t){var e=this;if(this.rowType===i.FullWidthDetail&&this.beans.gridOptionsWrapper.isDetailRowAutoHeight()){var o=function(){var o=t.clientHeight;if(null!=o&&o>0){e.beans.frameworkOverrides.setTimeout((function(){e.rowNode.setRowHeight(o),e.beans.clientSideRowModel?e.beans.clientSideRowModel.onRowHeightChanged():e.beans.serverSideRowModel&&e.beans.serverSideRowModel.onRowHeightChanged()}),0)}},r=this.beans.resizeObserverService.observeResize(t,o);this.addDestroyFunc(r),o()}},e.prototype.createFullWidthParams=function(t,e){var o=this;return{fullWidth:!0,data:this.rowNode.data,node:this.rowNode,value:this.rowNode.key,valueFormatted:this.rowNode.key,rowIndex:this.rowNode.rowIndex,api:this.beans.gridOptionsWrapper.getApi(),columnApi:this.beans.gridOptionsWrapper.getColumnApi(),context:this.beans.gridOptionsWrapper.getContext(),eGridCell:t,eParentOfValue:t,pinned:e,addRenderedRowListener:this.addEventListener.bind(this),registerRowDragger:function(t,e,i,r){return o.addFullWidthRowDragging(t,e,i,r)}}},e.prototype.addFullWidthRowDragging=function(t,e,o,i){if(void 0===o&&(o=""),this.isFullWidth()){var r=new v.O((function(){return o}),this.rowNode,void 0,t,e,i);this.createManagedBean(r,this.beans.context)}},e.prototype.onUiLevelChanged=function(){var t=this.beans.rowCssClassCalculator.calculateRowLevel(this.rowNode);if(this.rowLevel!=t){var e="ag-row-level-"+t,o="ag-row-level-"+this.rowLevel;this.allRowGuis.forEach((function(t){t.rowComp.addOrRemoveCssClass(e,!0),t.rowComp.addOrRemoveCssClass(o,!1)}))}this.rowLevel=t},e.prototype.isFirstRowOnPage=function(){return this.rowNode.rowIndex===this.beans.paginationProxy.getPageFirstRow()},e.prototype.isLastRowOnPage=function(){return this.rowNode.rowIndex===this.beans.paginationProxy.getPageLastRow()},e.prototype.onModelUpdated=function(){this.refreshFirstAndLastRowStyles()},e.prototype.refreshFirstAndLastRowStyles=function(){var t=this.isFirstRowOnPage(),e=this.isLastRowOnPage();this.firstRowOnPage!==t&&(this.firstRowOnPage=t,this.allRowGuis.forEach((function(e){return e.rowComp.addOrRemoveCssClass("ag-row-first",t)}))),this.lastRowOnPage!==e&&(this.lastRowOnPage=e,this.allRowGuis.forEach((function(t){return t.rowComp.addOrRemoveCssClass("ag-row-last",e)})))},e.prototype.stopEditing=function(t){void 0===t&&(t=!1);var e=this.getAllCellCtrls().map((function(e){return e.stopEditing(t)}));if(this.editingRow){if(!t&&e.some((function(t){return t}))){var o=this.createRowEvent(a.s.EVENT_ROW_VALUE_CHANGED);this.beans.eventService.dispatchEvent(o)}this.setEditingRow(!1)}},e.prototype.setInlineEditingCss=function(t){this.allRowGuis.forEach((function(e){e.rowComp.addOrRemoveCssClass("ag-row-inline-editing",t),e.rowComp.addOrRemoveCssClass("ag-row-not-inline-editing",!t)}))},e.prototype.setEditingRow=function(t){this.editingRow=t,this.allRowGuis.forEach((function(e){return e.rowComp.addOrRemoveCssClass("ag-row-editing",t)}));var e=t?this.createRowEvent(a.s.EVENT_ROW_EDITING_STARTED):this.createRowEvent(a.s.EVENT_ROW_EDITING_STOPPED);this.beans.eventService.dispatchEvent(e)},e.prototype.startRowEditing=function(t,e,o,i){void 0===t&&(t=null),void 0===e&&(e=null),void 0===o&&(o=null),void 0===i&&(i=null),this.editingRow||(this.getAllCellCtrls().forEach((function(r){var n=r===o;n?r.startEditing(t,e,n,i):r.startEditing(null,null,n,i)})),this.setEditingRow(!0))},e.prototype.getAllCellCtrls=function(){return m(this.centerCellCtrls.list,this.leftCellCtrls.list,this.rightCellCtrls.list)},e.prototype.postProcessClassesFromGridOptions=function(){var t=this,e=this.beans.rowCssClassCalculator.processClassesFromGridOptions(this.rowNode);e&&e.length&&e.forEach((function(e){t.allRowGuis.forEach((function(t){return t.rowComp.addOrRemoveCssClass(e,!0)}))}))},e.prototype.postProcessRowClassRules=function(){var t=this;this.beans.rowCssClassCalculator.processRowClassRules(this.rowNode,(function(e){t.allRowGuis.forEach((function(t){return t.rowComp.addOrRemoveCssClass(e,!0)}))}),(function(e){t.allRowGuis.forEach((function(t){return t.rowComp.addOrRemoveCssClass(e,!1)}))}))},e.prototype.setStylesFromGridOptions=function(){var t=this.processStylesFromGridOptions();this.allRowGuis.forEach((function(e){return e.rowComp.setUserStyles(t)}))},e.prototype.getRowBusinessKey=function(){var t=this.beans.gridOptionsWrapper.getBusinessKeyForNodeFunc();if("function"===typeof t)return t(this.rowNode)},e.prototype.getPinnedForContainer=function(t){return t===l.uv.LEFT?r.Y.PINNED_LEFT:t===l.uv.RIGHT?r.Y.PINNED_RIGHT:null},e.prototype.getInitialRowClasses=function(t){var e=this.getPinnedForContainer(t),o={rowNode:this.rowNode,rowFocused:this.rowFocused,fadeRowIn:this.fadeRowIn,rowIsEven:this.rowNode.rowIndex%2===0,rowLevel:this.rowLevel,fullWidthRow:this.isFullWidth(),firstRowOnPage:this.isFirstRowOnPage(),lastRowOnPage:this.isLastRowOnPage(),printLayout:this.printLayout,expandable:this.rowNode.isExpandable(),pinned:e};return this.beans.rowCssClassCalculator.getInitialRowClasses(o)},e.prototype.processStylesFromGridOptions=function(){var t=this.beans.gridOptionsWrapper.getRowStyle();if(!t||"function"!==typeof t){var e,o=this.beans.gridOptionsWrapper.getRowStyleFunc();if(o)e=o({data:this.rowNode.data,node:this.rowNode,rowIndex:this.rowNode.rowIndex});return Object.assign({},t,e)}console.warn("AG Grid: rowStyle should be an object of key/value styles, not be a function, use getRowStyle() instead")},e.prototype.onRowSelected=function(){var t=this,e=!!this.rowNode.isSelected();this.allRowGuis.forEach((function(o){o.rowComp.addOrRemoveCssClass("ag-row-selected",e),(0,u.setAriaSelected)(o.element,!!e||void 0);var i=t.createAriaLabel();(0,u.setAriaLabel)(o.element,null==i?"":i)}))},e.prototype.createAriaLabel=function(){var t=this.rowNode.isSelected();if(!t||!this.beans.gridOptionsWrapper.isSuppressRowDeselection())return this.beans.gridOptionsWrapper.getLocaleTextFunc()(t?"ariaRowDeselect":"ariaRowSelect","Press SPACE to "+(t?"deselect":"select")+" this row.")},e.prototype.isUseAnimationFrameForCreate=function(){return this.useAnimationFrameForCreate},e.prototype.addHoverFunctionality=function(t){var e=this;this.active&&(this.addManagedListener(t,"mouseenter",(function(){return e.rowNode.onMouseEnter()})),this.addManagedListener(t,"mouseleave",(function(){return e.rowNode.onMouseLeave()})),this.addManagedListener(this.rowNode,s.T.EVENT_MOUSE_ENTER,(function(){e.beans.gridOptionsWrapper.isSuppressRowHoverHighlight()||t.classList.add("ag-row-hover")})),this.addManagedListener(this.rowNode,s.T.EVENT_MOUSE_LEAVE,(function(){t.classList.remove("ag-row-hover")})))},e.prototype.roundRowTopToBounds=function(t){var e=this.beans.ctrlsService.getGridBodyCtrl().getScrollFeature().getVScrollPosition(),o=this.applyPaginationOffset(e.top,!0)-100,i=this.applyPaginationOffset(e.bottom,!0)+100;return Math.min(Math.max(o,t),i)},e.prototype.getFrameworkOverrides=function(){return this.beans.frameworkOverrides},e.prototype.onRowHeightChanged=function(){if(null!=this.rowNode.rowHeight){var t=this.rowNode.rowHeight,e=this.beans.gridOptionsWrapper.getDefaultRowHeight(),o=this.beans.gridOptionsWrapper.isGetRowHeightFunction()?this.beans.gridOptionsWrapper.getRowHeightForNode(this.rowNode).height:void 0,i=o?Math.min(e,o)-2+"px":void 0;this.allRowGuis.forEach((function(e){e.element.style.height=t+"px",i&&e.element.style.setProperty("--ag-line-height",i)}))}},e.prototype.addEventListener=function(e,o){"renderedRowRemoved"!==e&&"rowRemoved"!==e||(e=a.s.EVENT_VIRTUAL_ROW_REMOVED,console.warn("AG Grid: Since version 11, event renderedRowRemoved is now called "+a.s.EVENT_VIRTUAL_ROW_REMOVED)),t.prototype.addEventListener.call(this,e,o)},e.prototype.removeEventListener=function(e,o){"renderedRowRemoved"!==e&&"rowRemoved"!==e||(e=a.s.EVENT_VIRTUAL_ROW_REMOVED,console.warn("AG Grid: Since version 11, event renderedRowRemoved and rowRemoved is now called "+a.s.EVENT_VIRTUAL_ROW_REMOVED)),t.prototype.removeEventListener.call(this,e,o)},e.prototype.destroyFirstPass=function(){this.active=!1,this.setupRemoveAnimation();var e=this.createRowEvent(a.s.EVENT_VIRTUAL_ROW_REMOVED);this.dispatchEvent(e),this.beans.eventService.dispatchEvent(e),t.prototype.destroy.call(this)},e.prototype.setupRemoveAnimation=function(){if(null!=this.rowNode.rowTop){var t=this.roundRowTopToBounds(this.rowNode.rowTop);this.setRowTop(t)}else this.allRowGuis.forEach((function(t){return t.rowComp.addOrRemoveCssClass("ag-opacity-zero",!0)}))},e.prototype.destroySecondPass=function(){this.allRowGuis.length=0;var t=function(t){return t.list.forEach((function(t){return t.destroy()})),{list:[],map:{}}};this.centerCellCtrls=t(this.centerCellCtrls),this.leftCellCtrls=t(this.leftCellCtrls),this.rightCellCtrls=t(this.rightCellCtrls)},e.prototype.setFocusedClasses=function(){var t=this;this.allRowGuis.forEach((function(e){e.rowComp.addOrRemoveCssClass("ag-row-focus",t.rowFocused),e.rowComp.addOrRemoveCssClass("ag-row-no-focus",!t.rowFocused)}))},e.prototype.onCellFocusChanged=function(){var t=this.beans.focusService.isRowFocused(this.rowNode.rowIndex,this.rowNode.rowPinned);t!==this.rowFocused&&(this.rowFocused=t,this.setFocusedClasses()),!t&&this.editingRow&&this.stopEditing(!1)},e.prototype.onPaginationChanged=function(){var t=this.beans.paginationProxy.getCurrentPage();this.paginationPage!==t&&(this.paginationPage=t,this.onTopChanged()),this.refreshFirstAndLastRowStyles()},e.prototype.onTopChanged=function(){this.setRowTop(this.rowNode.rowTop)},e.prototype.onPaginationPixelOffsetChanged=function(){this.onTopChanged()},e.prototype.applyPaginationOffset=function(t,e){return void 0===e&&(e=!1),this.rowNode.isRowPinned()?t:t+this.beans.paginationProxy.getPixelOffset()*(e?1:-1)},e.prototype.setRowTop=function(t){if(!this.printLayout&&(0,g.exists)(t)){var e=this.applyPaginationOffset(t),o=(this.rowNode.isRowPinned()?e:this.beans.rowContainerHeightService.getRealPixelPosition(e))+"px";this.setRowTopStyle(o)}},e.prototype.getInitialRowTop=function(){return this.initialTop},e.prototype.getInitialTransform=function(){return this.initialTransform},e.prototype.setInitialRowTop=function(){if(this.printLayout)return"";var t=this.slideRowIn?this.roundRowTopToBounds(this.rowNode.oldRowTop):this.rowNode.rowTop,e=this.applyPaginationOffset(t),o=(this.rowNode.isRowPinned()?e:this.beans.rowContainerHeightService.getRealPixelPosition(e))+"px";this.beans.gridOptionsWrapper.isSuppressRowTransform()?this.initialTop=o:this.initialTransform="translateY("+o+")"},e.prototype.setRowTopStyle=function(t){var e=this.beans.gridOptionsWrapper.isSuppressRowTransform();this.allRowGuis.forEach((function(o){return e?o.rowComp.setTop(t):o.rowComp.setTransform("translateY("+t+")")}))},e.prototype.getRowNode=function(){return this.rowNode},e.prototype.getCellCtrl=function(t){var e=null;return this.getAllCellCtrls().forEach((function(o){o.getColumn()==t&&(e=o)})),null!=e||this.getAllCellCtrls().forEach((function(o){o.getColSpanningList().indexOf(t)>=0&&(e=o)})),e},e.prototype.onRowIndexChanged=function(){null!=this.rowNode.rowIndex&&(this.onCellFocusChanged(),this.updateRowIndexes(),this.postProcessCss())},e.prototype.updateRowIndexes=function(){var t=this.rowNode.getRowIndexString(),e=this.beans.headerNavigationService.getHeaderRowCount(),o=this.rowNode.rowIndex%2===0,i=e+this.rowNode.rowIndex+1;this.allRowGuis.forEach((function(e){e.rowComp.setRowIndex(t),e.rowComp.addOrRemoveCssClass("ag-row-even",o),e.rowComp.addOrRemoveCssClass("ag-row-odd",!o),(0,u.setAriaRowIndex)(e.element,i)}))},e.prototype.getPinnedLeftRowElement=function(){return this.leftGui?this.leftGui.element:void 0},e.prototype.getPinnedRightRowElement=function(){return this.rightGui?this.rightGui.element:void 0},e.prototype.getBodyRowElement=function(){return this.centerGui?this.centerGui.element:void 0},e.prototype.getFullWidthRowElement=function(){return this.fullWidthGui?this.fullWidthGui.element:void 0},e.DOM_DATA_KEY_ROW_CTRL="renderedRow",e}(n.X)},42042:function(t,e,o){o.d(e,{O:function(){return c}});var i=o(19158),r=o(6788),n=o(79659),s=o(89809),a=o(20635),l=o(72925),h=o(72968),p=o(19837),u=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),d=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},c=function(t){function e(e,o,i,r,n,s){var a=t.call(this)||this;return a.cellValueFn=e,a.rowNode=o,a.column=i,a.customGui=r,a.dragStartPixels=n,a.suppressVisibilityChange=s,a.dragSource=null,a}return u(e,t),e.prototype.isCustomGui=function(){return null!=this.customGui},e.prototype.postConstruct=function(){if(this.customGui?this.setDragElement(this.customGui,this.dragStartPixels):(this.setTemplate('<div class="ag-drag-handle ag-row-drag" aria-hidden="true"></div>'),this.getGui().appendChild((0,h.createIconNoSpan)("rowDrag",this.beans.gridOptionsWrapper,null)),this.addDragSource()),this.checkCompatibility(),!this.suppressVisibilityChange){var t=this.beans.gridOptionsWrapper.isRowDragManaged()?new w(this,this.beans,this.rowNode,this.column):new g(this,this.beans,this.rowNode,this.column);this.createManagedBean(t,this.beans.context)}},e.prototype.setDragElement=function(t,e){this.setTemplateFromElement(t),this.addDragSource(e)},e.prototype.getSelectedCount=function(){if(!this.beans.gridOptionsWrapper.isRowDragMultiRow())return 1;var t=this.beans.selectionService.getSelectedNodes();return-1!==t.indexOf(this.rowNode)?t.length:1},e.prototype.checkCompatibility=function(){var t=this.beans.gridOptionsWrapper.isRowDragManaged();this.beans.gridOptionsWrapper.isTreeData()&&t&&(0,p.doOnce)((function(){return console.warn("AG Grid: If using row drag with tree data, you cannot have rowDragManaged=true")}),"RowDragComp.managedAndTreeData")},e.prototype.addDragSource=function(t){var e=this;void 0===t&&(t=4),this.dragSource&&this.removeDragSource();var o={rowNode:this.rowNode,columns:this.column?[this.column]:void 0,defaultTextValue:this.cellValueFn()},i=this.column&&this.column.getColDef().rowDragText,r=this.gridOptionsWrapper.getLocaleTextFunc();this.dragSource={type:s.qR.RowDrag,eElement:this.getGui(),dragItemName:function(){var t=e.getSelectedCount();return i?i(o,t):1===t?e.cellValueFn():t+" "+r("rowDragRows","rows")},getDragItem:function(){return o},dragStartPixels:t,dragSourceDomDataKey:this.beans.gridOptionsWrapper.getDomDataKey()},this.beans.dragAndDropService.addDragSource(this.dragSource,!0)},e.prototype.removeDragSource=function(){this.dragSource&&this.beans.dragAndDropService.removeDragSource(this.dragSource),this.dragSource=null},d([(0,r.ds)("beans")],e.prototype,"beans",void 0),d([r.o7],e.prototype,"postConstruct",null),d([r.y],e.prototype,"removeDragSource",null),e}(i.u),f=function(t){function e(e,o,i){var r=t.call(this)||this;return r.parent=e,r.rowNode=o,r.column=i,r}return u(e,t),e.prototype.setDisplayedOrVisible=function(t){if(t)this.parent.setDisplayed(!1);else{var e=!0,o=!1;this.column&&(e=this.column.isRowDrag(this.rowNode)||this.parent.isCustomGui(),o=(0,p.isFunction)(this.column.getColDef().rowDrag)),o?(this.parent.setDisplayed(!0),this.parent.setVisible(e)):(this.parent.setDisplayed(e),this.parent.setVisible(!0))}},e}(l.X),g=function(t){function e(e,o,i,r){var n=t.call(this,e,i,r)||this;return n.beans=o,n}return u(e,t),e.prototype.postConstruct=function(){this.addManagedListener(this.beans.gridOptionsWrapper,"suppressRowDrag",this.onSuppressRowDrag.bind(this)),this.addManagedListener(this.rowNode,n.T.EVENT_DATA_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.rowNode,n.T.EVENT_CELL_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.rowNode,n.T.EVENT_CELL_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.beans.eventService,a.s.EVENT_NEW_COLUMNS_LOADED,this.workOutVisibility.bind(this)),this.workOutVisibility()},e.prototype.onSuppressRowDrag=function(){this.workOutVisibility()},e.prototype.workOutVisibility=function(){var t=this.beans.gridOptionsWrapper.isSuppressRowDrag();this.setDisplayedOrVisible(t)},d([r.o7],e.prototype,"postConstruct",null),e}(f),w=function(t){function e(e,o,i,r){var n=t.call(this,e,i,r)||this;return n.beans=o,n}return u(e,t),e.prototype.postConstruct=function(){this.addManagedListener(this.beans.eventService,a.s.EVENT_SORT_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.beans.eventService,a.s.EVENT_FILTER_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.beans.eventService,a.s.EVENT_COLUMN_ROW_GROUP_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.beans.eventService,a.s.EVENT_NEW_COLUMNS_LOADED,this.workOutVisibility.bind(this)),this.addManagedListener(this.rowNode,n.T.EVENT_DATA_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.rowNode,n.T.EVENT_CELL_CHANGED,this.workOutVisibility.bind(this)),this.addManagedListener(this.beans.gridOptionsWrapper,"suppressRowDrag",this.onSuppressRowDrag.bind(this)),this.workOutVisibility()},e.prototype.onSuppressRowDrag=function(){this.workOutVisibility()},e.prototype.workOutVisibility=function(){var t=this.beans.ctrlsService.getGridBodyCtrl().getRowDragFeature(),e=t&&t.shouldPreventRowMove(),o=this.beans.gridOptionsWrapper.isSuppressRowDrag(),i=this.beans.dragAndDropService.hasExternalDropZones(),r=e&&!i||o;this.setDisplayedOrVisible(r)},d([r.o7],e.prototype,"postConstruct",null),e}(f)},87323:function(t,e,o){o.d(e,{a:function(){return p}});var i=o(72925),r=o(6788),n=o(20635),s=o(59565),a=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),l=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},h=function(t,e){return function(o,i){e(o,i,t)}},p=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.scrollY=0,e.uiBodyHeight=0,e}return a(e,t),e.prototype.agWire=function(t){this.logger=t.create("RowContainerHeightService")},e.prototype.postConstruct=function(){this.addManagedListener(this.eventService,n.s.EVENT_BODY_HEIGHT_CHANGED,this.updateOffset.bind(this)),this.maxDivHeight=(0,s.getMaxDivHeight)(),this.logger.log("maxDivHeight = "+this.maxDivHeight)},e.prototype.isStretching=function(){return this.stretching},e.prototype.getDivStretchOffset=function(){return this.divStretchOffset},e.prototype.updateOffset=function(){if(this.stretching){var t=this.ctrlsService.getGridBodyCtrl().getScrollFeature().getVScrollPosition().top,e=this.getUiBodyHeight();(t!==this.scrollY||e!==this.uiBodyHeight)&&(this.scrollY=t,this.uiBodyHeight=e,this.calculateOffset())}},e.prototype.calculateOffset=function(){this.setUiContainerHeight(this.maxDivHeight),this.pixelsToShave=this.modelHeight-this.uiContainerHeight,this.maxScrollY=this.uiContainerHeight-this.uiBodyHeight;var t=this.scrollY/this.maxScrollY,e=t*this.pixelsToShave;this.logger.log("Div Stretch Offset = "+e+" ("+this.pixelsToShave+" * "+t+")"),this.setDivStretchOffset(e)},e.prototype.setUiContainerHeight=function(t){t!==this.uiContainerHeight&&(this.uiContainerHeight=t,this.eventService.dispatchEvent({type:n.s.EVENT_ROW_CONTAINER_HEIGHT_CHANGED}))},e.prototype.clearOffset=function(){this.setUiContainerHeight(this.modelHeight),this.pixelsToShave=0,this.setDivStretchOffset(0)},e.prototype.setDivStretchOffset=function(t){var e="number"===typeof t?Math.floor(t):null;this.divStretchOffset!==e&&(this.divStretchOffset=e,this.eventService.dispatchEvent({type:n.s.EVENT_HEIGHT_SCALE_CHANGED}))},e.prototype.setModelHeight=function(t){this.modelHeight=t,this.stretching=null!=t&&this.maxDivHeight>0&&t>this.maxDivHeight,this.stretching?this.calculateOffset():this.clearOffset()},e.prototype.getUiContainerHeight=function(){return this.uiContainerHeight},e.prototype.getRealPixelPosition=function(t){return t-this.divStretchOffset},e.prototype.getUiBodyHeight=function(){var t=this.ctrlsService.getGridBodyCtrl().getScrollFeature().getVScrollPosition();return t.bottom-t.top},e.prototype.getScrollPositionForPixel=function(t){if(this.pixelsToShave<=0)return t;var e=t/(this.modelHeight-this.getUiBodyHeight());return this.maxScrollY*e},l([(0,r.ds)("ctrlsService")],e.prototype,"ctrlsService",void 0),l([h(0,(0,r.Vf)("loggerFactory"))],e.prototype,"agWire",null),l([r.o7],e.prototype,"postConstruct",null),e=l([(0,r.dR)("rowContainerHeightService")],e)}(i.X)},83347:function(t,e,o){o.d(e,{k:function(){return R}});var i=o(75570),r=o(38338),n=o(85302),s=o(88114),a=o(16892),l=o(6788),h=o(72925),p=o(25644),u=o(97998),d=o(200),c=o(19837),f=o(60385),g=o(24436),w=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),y=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},v=function(t,e){var o="function"===typeof Symbol&&t[Symbol.iterator];if(!o)return t;var i,r,n=o.call(t),s=[];try{for(;(void 0===e||e-- >0)&&!(i=n.next()).done;)s.push(i.value)}catch(a){r={error:a}}finally{try{i&&!i.done&&(o=n.return)&&o.call(n)}finally{if(r)throw r.error}}return s},C=function(){for(var t=[],e=0;e<arguments.length;e++)t=t.concat(v(arguments[e]));return t},R=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.destroyFuncsForColumnListeners=[],e.rowCtrlsByRowIndex={},e.zombieRowCtrls={},e.allRowCtrls=[],e.topRowCtrls=[],e.bottomRowCtrls=[],e.refreshInProgress=!1,e}return w(e,t),e.prototype.postConstruct=function(){var t=this;this.ctrlsService.whenReady((function(){t.gridBodyCtrl=t.ctrlsService.getGridBodyCtrl(),t.initialise()}))},e.prototype.initialise=function(){this.addManagedListener(this.eventService,s.s.EVENT_PAGINATION_CHANGED,this.onPageLoaded.bind(this)),this.addManagedListener(this.eventService,s.s.EVENT_PINNED_ROW_DATA_CHANGED,this.onPinnedRowDataChanged.bind(this)),this.addManagedListener(this.eventService,s.s.EVENT_DISPLAYED_COLUMNS_CHANGED,this.onDisplayedColumnsChanged.bind(this)),this.addManagedListener(this.eventService,s.s.EVENT_BODY_SCROLL,this.redrawAfterScroll.bind(this)),this.addManagedListener(this.eventService,s.s.EVENT_BODY_HEIGHT_CHANGED,this.redrawAfterScroll.bind(this)),this.addManagedListener(this.gridOptionsWrapper,i.a.PROP_DOM_LAYOUT,this.onDomLayoutChanged.bind(this)),this.addManagedListener(this.gridOptionsWrapper,i.a.PROP_ROW_CLASS,this.redrawRows.bind(this)),this.addManagedListener(this.eventService,s.s.EVENT_NEW_COLUMNS_LOADED,this.onNewColumnsLoaded.bind(this)),this.registerCellEventListeners(),this.initialiseCache(),this.printLayout=this.gridOptionsWrapper.getDomLayout()===a.Y.DOM_LAYOUT_PRINT,this.embedFullWidthRows=this.printLayout||this.gridOptionsWrapper.isEmbedFullWidthRows(),this.redrawAfterModelUpdate()},e.prototype.initialiseCache=function(){if(this.gridOptionsWrapper.isKeepDetailRows()){var t=this.gridOptionsWrapper.getKeepDetailRowsCount(),e=null!=t?t:3;this.cachedRowCtrls=new m(e)}},e.prototype.getRowCtrls=function(){return this.allRowCtrls},e.prototype.updateAllRowCtrls=function(){var t=(0,u.getAllValuesInObject)(this.rowCtrlsByRowIndex);this.gridOptionsWrapper.isEnsureDomOrder()&&t.sort((function(t,e){return t.getRowNode().rowIndex-e.getRowNode.rowIndex}));var e=(0,u.getAllValuesInObject)(this.zombieRowCtrls),o=this.cachedRowCtrls?this.cachedRowCtrls.getEntries():[];this.allRowCtrls=C(t,e,o)},e.prototype.registerCellEventListeners=function(){var t=this;this.addManagedListener(this.eventService,s.s.EVENT_CELL_FOCUSED,(function(e){t.getAllCellCtrls().forEach((function(t){return t.onCellFocused(e)})),t.getFullWidthRowCtrls().forEach((function(t){t.onFullWidthRowFocused(e)}))})),this.addManagedListener(this.eventService,s.s.EVENT_FLASH_CELLS,(function(e){t.getAllCellCtrls().forEach((function(t){return t.onFlashCells(e)}))})),this.addManagedListener(this.eventService,s.s.EVENT_COLUMN_HOVER_CHANGED,(function(){t.getAllCellCtrls().forEach((function(t){return t.onColumnHover()}))})),this.addManagedListener(this.eventService,s.s.EVENT_DISPLAYED_COLUMNS_CHANGED,(function(){t.getAllCellCtrls().forEach((function(t){return t.onDisplayedColumnsChanged()}))})),this.addManagedListener(this.eventService,s.s.EVENT_DISPLAYED_COLUMNS_WIDTH_CHANGED,(function(){t.printLayout&&t.getAllCellCtrls().forEach((function(t){return t.onLeftChanged()}))})),this.gridOptionsWrapper.isEnableRangeSelection()&&(this.addManagedListener(this.eventService,s.s.EVENT_RANGE_SELECTION_CHANGED,(function(){t.getAllCellCtrls().forEach((function(t){return t.onRangeSelectionChanged()}))})),this.addManagedListener(this.eventService,s.s.EVENT_COLUMN_MOVED,(function(){t.getAllCellCtrls().forEach((function(t){return t.updateRangeBordersIfRangeCount()}))})),this.addManagedListener(this.eventService,s.s.EVENT_COLUMN_PINNED,(function(){t.getAllCellCtrls().forEach((function(t){return t.updateRangeBordersIfRangeCount()}))})),this.addManagedListener(this.eventService,s.s.EVENT_COLUMN_VISIBLE,(function(){t.getAllCellCtrls().forEach((function(t){return t.updateRangeBordersIfRangeCount()}))}))),this.refreshListenersToColumnsForCellComps(),this.addManagedListener(this.eventService,s.s.EVENT_GRID_COLUMNS_CHANGED,this.refreshListenersToColumnsForCellComps.bind(this)),this.addDestroyFunc(this.removeGridColumnListeners.bind(this))},e.prototype.removeGridColumnListeners=function(){this.destroyFuncsForColumnListeners.forEach((function(t){return t()})),this.destroyFuncsForColumnListeners.length=0},e.prototype.refreshListenersToColumnsForCellComps=function(){var t=this;this.removeGridColumnListeners();var e=this.columnModel.getAllGridColumns();e&&e.forEach((function(e){var o=function(o){t.getAllCellCtrls().forEach((function(t){t.getColumn()===e&&o(t)}))},i=function(){o((function(t){return t.onLeftChanged()}))},r=function(){o((function(t){return t.onWidthChanged()}))},s=function(){o((function(t){return t.onFirstRightPinnedChanged()}))},a=function(){o((function(t){return t.onLastLeftPinnedChanged()}))};e.addEventListener(n.V.EVENT_LEFT_CHANGED,i),e.addEventListener(n.V.EVENT_WIDTH_CHANGED,r),e.addEventListener(n.V.EVENT_FIRST_RIGHT_PINNED_CHANGED,s),e.addEventListener(n.V.EVENT_LAST_LEFT_PINNED_CHANGED,a),t.destroyFuncsForColumnListeners.push((function(){e.removeEventListener(n.V.EVENT_LEFT_CHANGED,i),e.removeEventListener(n.V.EVENT_WIDTH_CHANGED,r),e.removeEventListener(n.V.EVENT_FIRST_RIGHT_PINNED_CHANGED,s),e.removeEventListener(n.V.EVENT_LAST_LEFT_PINNED_CHANGED,a)}))}))},e.prototype.onDomLayoutChanged=function(){var t=this.gridOptionsWrapper.getDomLayout()===a.Y.DOM_LAYOUT_PRINT,e=t||this.gridOptionsWrapper.isEmbedFullWidthRows(),o=e!==this.embedFullWidthRows||this.printLayout!==t;this.printLayout=t,this.embedFullWidthRows=e,o&&this.redrawAfterModelUpdate()},e.prototype.datasourceChanged=function(){this.firstRenderedRow=0,this.lastRenderedRow=-1;var t=Object.keys(this.rowCtrlsByRowIndex);this.removeRowCtrls(t)},e.prototype.onPageLoaded=function(t){var e={recycleRows:t.keepRenderedRows,animate:t.animate,newData:t.newData,newPage:t.newPage,onlyBody:!0};this.redrawAfterModelUpdate(e)},e.prototype.getAllCellsForColumn=function(t){var e=[];return this.getAllRowCtrls().forEach((function(o){var i=o.getCellElement(t);i&&e.push(i)})),e},e.prototype.refreshFloatingRowComps=function(){this.refreshFloatingRows(this.topRowCtrls,this.pinnedRowModel.getPinnedTopRowData()),this.refreshFloatingRows(this.bottomRowCtrls,this.pinnedRowModel.getPinnedBottomRowData())},e.prototype.getTopRowCtrls=function(){return this.topRowCtrls},e.prototype.getBottomRowCtrls=function(){return this.bottomRowCtrls},e.prototype.refreshFloatingRows=function(t,e){var o=this;t.forEach((function(t){t.destroyFirstPass(),t.destroySecondPass()})),t.length=0,e&&e.forEach((function(e){var i=new r.C(e,o.beans,!1,!1,o.printLayout);t.push(i)}))},e.prototype.onPinnedRowDataChanged=function(){this.redrawAfterModelUpdate({recycleRows:!0})},e.prototype.getRenderedIndexesForRowNodes=function(t){var e=[];return(0,p.missing)(t)||(0,u.iterateObject)(this.rowCtrlsByRowIndex,(function(o,i){var r=i.getRowNode();t.indexOf(r)>=0&&e.push(o)})),e},e.prototype.redrawRows=function(t){var e=null!=t&&t.length>0;if(e){var o=this.getRenderedIndexesForRowNodes(t);this.removeRowCtrls(o)}this.redrawAfterModelUpdate({recycleRows:e})},e.prototype.getCellToRestoreFocusToAfterRefresh=function(t){var e=t.suppressKeepFocus?null:this.focusService.getFocusCellToUseAfterRefresh();if(null==e)return null;var o=this.gridOptionsWrapper.getDocument().activeElement,i=this.gridOptionsWrapper.getDomData(o,f.w.DOM_DATA_KEY_CELL_CTRL),n=this.gridOptionsWrapper.getDomData(o,r.C.DOM_DATA_KEY_ROW_CTRL);return i||n?e:null},e.prototype.redrawAfterModelUpdate=function(t){void 0===t&&(t={}),this.getLockOnRefresh();var e=this.getCellToRestoreFocusToAfterRefresh(t);this.updateContainerHeights(),this.scrollToTopIfNewData(t);var o=!this.printLayout&&!!t.recycleRows,i=t.animate&&this.gridOptionsWrapper.isAnimateRows(),r=o?this.recycleRows():null;o||this.removeAllRowComps();var n=function(){if(null==e||null==r)return!1;var t=!1;return(0,u.iterateObject)(r,(function(o,i){var r=i.getRowNode(),n=r.rowIndex==e.rowIndex,s=r.rowPinned==e.rowPinned;n&&s&&(t=!0)})),t}();this.redraw(r,i),t.onlyBody||this.refreshFloatingRowComps(),this.dispatchDisplayedRowsChanged(),n||this.restoreFocusedCell(e),this.releaseLockOnRefresh()},e.prototype.scrollToTopIfNewData=function(t){var e=t.newData||t.newPage,o=this.gridOptionsWrapper.isSuppressScrollOnNewData();e&&!o&&this.gridBodyCtrl.getScrollFeature().scrollToTop()},e.prototype.updateContainerHeights=function(){if(this.printLayout)this.rowContainerHeightService.setModelHeight(null);else{var t=this.paginationProxy.getCurrentPageHeight();0===t&&(t=1),this.rowContainerHeightService.setModelHeight(t)}},e.prototype.getLockOnRefresh=function(){if(this.refreshInProgress)throw new Error("AG Grid: cannot get grid to draw rows when it is in the middle of drawing rows. Your code probably called a grid API method while the grid was in the render stage. To overcome this, put the API call into a timeout, e.g. instead of api.redrawRows(), call setTimeout(function() { api.redrawRows(); }, 0). To see what part of your code that caused the refresh check this stacktrace.");this.refreshInProgress=!0},e.prototype.releaseLockOnRefresh=function(){this.refreshInProgress=!1},e.prototype.isRefreshInProgress=function(){return this.refreshInProgress},e.prototype.restoreFocusedCell=function(t){t&&this.focusService.setFocusedCell(t.rowIndex,t.column,t.rowPinned,!0)},e.prototype.stopEditing=function(t){void 0===t&&(t=!1),this.getAllRowCtrls().forEach((function(e){e.stopEditing(t)}))},e.prototype.onNewColumnsLoaded=function(){this.getAllCellCtrls().forEach((function(t){return t.onNewColumnsLoaded()}))},e.prototype.getAllCellCtrls=function(){var t=[];return this.getAllRowCtrls().forEach((function(e){return t=t.concat(e.getAllCellCtrls())})),t},e.prototype.getAllRowCtrls=function(){var t=this,e=C(this.topRowCtrls,this.bottomRowCtrls);return Object.keys(this.rowCtrlsByRowIndex).forEach((function(o){return e.push(t.rowCtrlsByRowIndex[o])})),e},e.prototype.addRenderedRowListener=function(t,e,o){var i=this.rowCtrlsByRowIndex[e];i&&i.addEventListener(t,o)},e.prototype.flashCells=function(t){void 0===t&&(t={});var e=t.flashDelay,o=t.fadeDelay;this.getCellCtrls(t.rowNodes,t.columns).forEach((function(t){return t.flashCell({flashDelay:e,fadeDelay:o})}))},e.prototype.refreshCells=function(t){void 0===t&&(t={});var e={forceRefresh:t.force,newData:!1,suppressFlash:t.suppressFlash};this.getCellCtrls(t.rowNodes,t.columns).forEach((function(t){if(t.refreshShouldDestroy()){var o=t.getRowCtrl();o&&o.refreshCell(t)}else t.refreshCell(e)})),this.getFullWidthRowCtrls(t.rowNodes).forEach((function(t){t.refreshFullWidth()}))},e.prototype.getCellRendererInstances=function(t){return this.getCellCtrls(t.rowNodes,t.columns).map((function(t){return t.getCellRenderer()})).filter((function(t){return null!=t}))},e.prototype.getCellEditorInstances=function(t){var e=[];return this.getCellCtrls(t.rowNodes,t.columns).forEach((function(t){var o=t.getCellEditor();o&&e.push(o)})),e},e.prototype.getEditingCells=function(){var t=[];return this.getAllCellCtrls().forEach((function(e){if(e.isEditing()){var o=e.getCellPosition();t.push(o)}})),t},e.prototype.mapRowNodes=function(t){if(t){var e={top:{},bottom:{},normal:{}};return t.forEach((function(t){var o=t.id;t.rowPinned===a.Y.PINNED_TOP?e.top[o]=t:t.rowPinned===a.Y.PINNED_BOTTOM?e.bottom[o]=t:e.normal[o]=t})),e}},e.prototype.isRowInMap=function(t,e){var o=t.id,i=t.rowPinned;return i===a.Y.PINNED_BOTTOM?null!=e.bottom[o]:i===a.Y.PINNED_TOP?null!=e.top[o]:null!=e.normal[o]},e.prototype.getCellCtrls=function(t,e){var o,i=this,r=this.mapRowNodes(t),n=[];(0,p.exists)(e)&&(o={},e.forEach((function(t){var e=i.columnModel.getGridColumn(t);(0,p.exists)(e)&&(o[e.getId()]=!0)})));var s=function(t){var e=t.getRowNode();(null==r||i.isRowInMap(e,r))&&t.getAllCellCtrls().forEach((function(t){var e=t.getColumn().getId();o&&!o[e]||n.push(t)}))};return(0,u.iterateObject)(this.rowCtrlsByRowIndex,(function(t,e){s(e)})),this.topRowCtrls&&this.topRowCtrls.forEach(s),this.bottomRowCtrls&&this.bottomRowCtrls.forEach(s),n},e.prototype.destroy=function(){this.removeAllRowComps(),t.prototype.destroy.call(this)},e.prototype.removeAllRowComps=function(){var t=Object.keys(this.rowCtrlsByRowIndex);this.removeRowCtrls(t)},e.prototype.recycleRows=function(){var t=[];(0,u.iterateObject)(this.rowCtrlsByRowIndex,(function(e,o){null==o.getRowNode().id&&t.push(e)})),this.removeRowCtrls(t);var e={};return(0,u.iterateObject)(this.rowCtrlsByRowIndex,(function(t,o){var i=o.getRowNode();e[i.id]=o})),this.rowCtrlsByRowIndex={},e},e.prototype.removeRowCtrls=function(t){var e=this;t.forEach((function(t){var o=e.rowCtrlsByRowIndex[t];o&&(o.destroyFirstPass(),o.destroySecondPass()),delete e.rowCtrlsByRowIndex[t]}))},e.prototype.redrawAfterScroll=function(){this.getLockOnRefresh(),this.redraw(null,!1,!0),this.releaseLockOnRefresh(),this.dispatchDisplayedRowsChanged()},e.prototype.removeRowCompsNotToDraw=function(t){var e={};t.forEach((function(t){return e[t]=!0}));var o=Object.keys(this.rowCtrlsByRowIndex).filter((function(t){return!e[t]}));this.removeRowCtrls(o)},e.prototype.calculateIndexesToDraw=function(t){var e=this,o=(0,d.createArrayOfNumbers)(this.firstRenderedRow,this.lastRenderedRow),i=function(t,i){var r=i.getRowNode().rowIndex;null!=r&&(r<e.firstRenderedRow||r>e.lastRenderedRow)&&e.doNotUnVirtualiseRow(i)&&o.push(r)};return(0,u.iterateObject)(this.rowCtrlsByRowIndex,i),(0,u.iterateObject)(t,i),o.sort((function(t,e){return t-e})),o},e.prototype.redraw=function(t,e,o){var i=this;void 0===e&&(e=!1),void 0===o&&(o=!1),this.rowContainerHeightService.updateOffset(),this.workOutFirstAndLastRowsToRender();var r=this.calculateIndexesToDraw(t);this.removeRowCompsNotToDraw(r),this.printLayout&&(e=!1);var n=[];(r.forEach((function(r){var s=i.createOrUpdateRowCtrl(r,t,e,o);(0,p.exists)(s)&&n.push(s)})),t)&&(o&&!this.gridOptionsWrapper.isSuppressAnimationFrame()&&!this.printLayout?this.beans.animationFrameService.addDestroyTask((function(){i.destroyRowCtrls(t,e),i.updateAllRowCtrls(),i.dispatchDisplayedRowsChanged()})):this.destroyRowCtrls(t,e));this.updateAllRowCtrls(),this.gridBodyCtrl.updateRowCount()},e.prototype.dispatchDisplayedRowsChanged=function(){var t={type:s.s.EVENT_DISPLAYED_ROWS_CHANGED};this.eventService.dispatchEvent(t)},e.prototype.onDisplayedColumnsChanged=function(){var t=this.columnModel.isPinningLeft(),e=this.columnModel.isPinningRight();(this.pinningLeft!==t||e!==this.pinningRight)&&(this.pinningLeft=t,this.pinningRight=e,this.embedFullWidthRows&&this.redrawFullWidthEmbeddedRows())},e.prototype.redrawFullWidthEmbeddedRows=function(){var t=[];this.getFullWidthRowCtrls().forEach((function(e){var o=e.getRowNode().rowIndex;t.push(o.toString())})),this.refreshFloatingRowComps(),this.removeRowCtrls(t),this.redrawAfterScroll()},e.prototype.getFullWidthRowCtrls=function(t){var e=this,o=this.mapRowNodes(t);return(0,u.getAllValuesInObject)(this.rowCtrlsByRowIndex).filter((function(t){if(!t.isFullWidth())return!1;var i=t.getRowNode();return!(null!=o&&!e.isRowInMap(i,o))}))},e.prototype.refreshFullWidthRows=function(t){var e=[],o=!!t,i=o?{}:void 0;o&&i&&t.forEach((function(t){return i[t.id]=!0})),this.getFullWidthRowCtrls().forEach((function(t){var r=t.getRowNode();if(o&&i){var n=r.level>0&&r.parent?r.parent.id:void 0;if(!i[r.id]&&!i[n])return}if(!t.refreshFullWidth()){var s=t.getRowNode().rowIndex;e.push(s.toString())}})),this.removeRowCtrls(e),this.redrawAfterScroll()},e.prototype.createOrUpdateRowCtrl=function(t,e,o,i){var r,n=this.rowCtrlsByRowIndex[t];if(n||(r=this.paginationProxy.getRow(t),(0,p.exists)(r)&&(0,p.exists)(e)&&e[r.id]&&r.alreadyRendered&&(n=e[r.id],e[r.id]=null)),!n){if(r||(r=this.paginationProxy.getRow(t)),!(0,p.exists)(r))return;n=this.createRowCon(r,o,i)}return r&&(r.alreadyRendered=!0),this.rowCtrlsByRowIndex[t]=n,n},e.prototype.destroyRowCtrls=function(t,e){var o=this,i=[];(0,u.iterateObject)(t,(function(t,r){r&&(o.cachedRowCtrls&&r.isCacheable()?o.cachedRowCtrls.addRow(r):(r.destroyFirstPass(),e?(o.zombieRowCtrls[r.getInstanceId()]=r,i.push((function(){r.destroySecondPass(),delete o.zombieRowCtrls[r.getInstanceId()]}))):r.destroySecondPass()))})),e&&(i.push((function(){o.updateAllRowCtrls(),o.dispatchDisplayedRowsChanged()})),(0,c.executeInAWhile)(i))},e.prototype.workOutFirstAndLastRowsToRender=function(){var t,e,o=this;if(this.paginationProxy.isRowsToRender())if(this.printLayout)t=this.paginationProxy.getPageFirstRow(),e=this.paginationProxy.getPageLastRow();else{var i=this.gridOptionsWrapper.getRowBufferInPixels(),r=this.ctrlsService.getGridBodyCtrl(),n=this.gridOptionsWrapper.isSuppressRowVirtualisation(),l=!1,h=void 0,p=void 0;do{var u=this.paginationProxy.getPixelOffset(),d=this.paginationProxy.getCurrentPagePixelRange(),c=d.pageFirstPixel,f=d.pageLastPixel,g=this.rowContainerHeightService.getDivStretchOffset();if(n)h=c+g,p=f+g;else{var w=r.getScrollFeature().getVScrollPosition(),y=w.top,v=w.bottom;h=Math.max(y+u-i,c)+g,p=Math.min(v+u+i,f)+g}l=this.ensureAllRowsInRangeHaveHeightsCalculated(h,p)}while(l);var C=this.paginationProxy.getRowIndexAtPixel(h),R=this.paginationProxy.getRowIndexAtPixel(p),m=this.paginationProxy.getPageFirstRow(),E=this.paginationProxy.getPageLastRow();C<m&&(C=m),R>E&&(R=E),t=C,e=R}else t=0,e=-1;var O=this.gridOptionsWrapper.getDomLayout()===a.Y.DOM_LAYOUT_NORMAL,L=this.gridOptionsWrapper.isSuppressMaxRenderedRowRestriction(),N=Math.max(this.gridOptionsWrapper.getRowBuffer(),500);O&&!L&&e-t>N&&(e=t+N);var b=t!==this.firstRenderedRow,_=e!==this.lastRenderedRow;if(b||_){this.firstRenderedRow=t,this.lastRenderedRow=e;var D={type:s.s.EVENT_VIEWPORT_CHANGED,firstRow:t,lastRow:e,api:this.gridApi,columnApi:this.columnApi};this.eventService.dispatchEvent(D)}if(this.paginationProxy.isRowsToRender()){var S={type:s.s.EVENT_FIRST_DATA_RENDERED,firstRow:t,lastRow:e,api:this.gridApi,columnApi:this.columnApi};window.setTimeout((function(){return o.eventService.dispatchEventOnce(S)}),50)}},e.prototype.ensureAllRowsInRangeHaveHeightsCalculated=function(t,e){var o=this.paginationProxy.ensureRowHeightsValid(t,e,-1,-1);return o&&this.updateContainerHeights(),o},e.prototype.getFirstVirtualRenderedRow=function(){return this.firstRenderedRow},e.prototype.getLastVirtualRenderedRow=function(){return this.lastRenderedRow},e.prototype.doNotUnVirtualiseRow=function(t){var e=!1,o=t.getRowNode(),i=this.focusService.isRowNodeFocused(o),r=t.isEditing(),n=o.detail;return(i||r||n)&&!!this.paginationProxy.isRowPresent(o)||e},e.prototype.createRowCon=function(t,e,o){var i=this.cachedRowCtrls?this.cachedRowCtrls.getRow(t):null;if(i)return i;var n=this.gridOptionsWrapper.isSuppressAnimationFrame(),s=o&&!n&&!this.printLayout;return new r.C(t,this.beans,e,s,this.printLayout)},e.prototype.getRenderedNodes=function(){var t=this.rowCtrlsByRowIndex;return Object.keys(t).map((function(e){return t[e].getRowNode()}))},e.prototype.getRowByPosition=function(t){var e;switch(t.rowPinned){case a.Y.PINNED_TOP:e=this.topRowCtrls[t.rowIndex];break;case a.Y.PINNED_BOTTOM:e=this.bottomRowCtrls[t.rowIndex];break;default:e=this.rowCtrlsByRowIndex[t.rowIndex]}return e},e.prototype.getRowNode=function(t){switch(t.rowPinned){case a.Y.PINNED_TOP:return this.pinnedRowModel.getPinnedTopRowData()[t.rowIndex];case a.Y.PINNED_BOTTOM:return this.pinnedRowModel.getPinnedBottomRowData()[t.rowIndex];default:return this.rowModel.getRow(t.rowIndex)}},e.prototype.isRangeInRenderedViewport=function(t,e){if(null==t||null==e)return!1;var o=t>this.lastRenderedRow;return!(e<this.firstRenderedRow)&&!o},y([(0,l.ds)("paginationProxy")],e.prototype,"paginationProxy",void 0),y([(0,l.ds)("columnModel")],e.prototype,"columnModel",void 0),y([(0,l.ds)("pinnedRowModel")],e.prototype,"pinnedRowModel",void 0),y([(0,l.ds)("rowModel")],e.prototype,"rowModel",void 0),y([(0,l.ds)("focusService")],e.prototype,"focusService",void 0),y([(0,l.ds)("columnApi")],e.prototype,"columnApi",void 0),y([(0,l.ds)("gridApi")],e.prototype,"gridApi",void 0),y([(0,l.ds)("beans")],e.prototype,"beans",void 0),y([(0,l.ds)("rowContainerHeightService")],e.prototype,"rowContainerHeightService",void 0),y([(0,l.Xx)("ctrlsService")],e.prototype,"ctrlsService",void 0),y([l.o7],e.prototype,"postConstruct",null),e=y([(0,l.dR)("rowRenderer")],e)}(h.X),m=function(){function t(t){this.entriesMap={},this.entriesList=[],this.maxCount=t}return t.prototype.addRow=function(t){if(this.entriesMap[t.getRowNode().id]=t,this.entriesList.push(t),t.setCached(!0),this.entriesList.length>this.maxCount){var e=this.entriesList[0];e.destroyFirstPass(),e.destroySecondPass(),this.removeFromCache(e)}},t.prototype.getRow=function(t){if(null==t||null==t.id)return null;var e=this.entriesMap[t.id];return e?(this.removeFromCache(e),e.setCached(!1),e.getRowNode()!=t?null:e):null},t.prototype.removeFromCache=function(t){var e=t.getRowNode().id;delete this.entriesMap[e],(0,g.removeFromArray)(this.entriesList,t)},t.prototype.getEntries=function(){return this.entriesList},t}()},64660:function(t,e,o){o.d(e,{b:function(){return s}});var i=o(96964),r=o(7884),n=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),s=function(t){function e(){return t.call(this,'<div class="ag-tooltip"></div>')||this}return n(e,t),e.prototype.init=function(t){var e=t.value;this.getGui().innerHTML=(0,r.escapeString)(e)},e}(i.y)},58372:function(t,e,o){o.d(e,{R:function(){return a}});var i=o(6788),r=o(72925),n=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),s=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.formatValue=function(t,e,o,i,r){void 0===r&&(r=!0);var n,s=null,a=t.getColDef();if(i?n=i:r&&(n=e&&e.rowPinned&&a.pinnedRowValueFormatter?a.pinnedRowValueFormatter:a.valueFormatter),n){var l={value:o,node:e,data:e?e.data:null,colDef:a,column:t,api:this.gridOptionsWrapper.getApi(),columnApi:this.gridOptionsWrapper.getColumnApi(),context:this.gridOptionsWrapper.getContext()};s=this.expressionService.evaluate(n,l)}else if(a.refData)return a.refData[o]||"";return null==s&&Array.isArray(o)&&(s=o.join(", ")),s},s([(0,i.ds)("expressionService")],e.prototype,"expressionService",void 0),e=s([(0,i.dR)("valueFormatterService")],e)}(r.X)},64349:function(t,e,o){o.d(e,{i:function(){return n}});var i=o(72925),r=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),n=function(t){function e(o){var i=t.call(this)||this;return i.state=e.STATE_WAITING_TO_LOAD,i.version=0,i.id=o,i}return r(e,t),e.prototype.getId=function(){return this.id},e.prototype.load=function(){this.state=e.STATE_LOADING,this.loadFromDatasource()},e.prototype.getVersion=function(){return this.version},e.prototype.setStateWaitingToLoad=function(){this.version++,this.state=e.STATE_WAITING_TO_LOAD},e.prototype.getState=function(){return this.state},e.prototype.pageLoadFailed=function(t){this.isRequestMostRecentAndLive(t)&&(this.state=e.STATE_FAILED,this.processServerFail()),this.dispatchLoadCompleted(!1)},e.prototype.success=function(t,e){this.successCommon(t,e)},e.prototype.pageLoaded=function(t,e,o){this.successCommon(t,{rowData:e,rowCount:o})},e.prototype.isRequestMostRecentAndLive=function(t){var e=t===this.version,o=this.isAlive();return e&&o},e.prototype.successCommon=function(t,o){this.dispatchLoadCompleted(),this.isRequestMostRecentAndLive(t)&&(this.state=e.STATE_LOADED,this.processServerResult(o))},e.prototype.dispatchLoadCompleted=function(t){void 0===t&&(t=!0);var o={type:e.EVENT_LOAD_COMPLETE,success:t,block:this};this.dispatchEvent(o)},e.EVENT_LOAD_COMPLETE="loadComplete",e.STATE_WAITING_TO_LOAD="needsLoading",e.STATE_LOADING="loading",e.STATE_LOADED="loaded",e.STATE_FAILED="failed",e}(i.X)},92406:function(t,e,o){o.d(e,{R:function(){return p}});var i=o(64349),r=o(6788),n=o(72925),s=o(46599),a=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),l=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},h=function(t,e){return function(o,i){e(o,i,t)}},p=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.activeBlockLoadsCount=0,e.blocks=[],e.active=!0,e}var o;return a(e,t),o=e,e.prototype.postConstruct=function(){this.maxConcurrentRequests=this.gridOptionsWrapper.getMaxConcurrentDatasourceRequests();var t=this.gridOptionsWrapper.getBlockLoadDebounceMillis();t&&t>0&&(this.checkBlockToLoadDebounce=s._.debounce(this.performCheckBlocksToLoad.bind(this),t))},e.prototype.setBeans=function(t){this.logger=t.create("RowNodeBlockLoader")},e.prototype.addBlock=function(t){this.blocks.push(t),t.addEventListener(i.i.EVENT_LOAD_COMPLETE,this.loadComplete.bind(this)),this.checkBlockToLoad()},e.prototype.removeBlock=function(t){s._.removeFromArray(this.blocks,t)},e.prototype.destroy=function(){t.prototype.destroy.call(this),this.active=!1},e.prototype.loadComplete=function(){this.activeBlockLoadsCount--,this.checkBlockToLoad(),0==this.activeBlockLoadsCount&&this.dispatchEvent({type:o.BLOCK_LOADER_FINISHED_EVENT})},e.prototype.checkBlockToLoad=function(){this.checkBlockToLoadDebounce?this.checkBlockToLoadDebounce():this.performCheckBlocksToLoad()},e.prototype.performCheckBlocksToLoad=function(){if(this.active)if(this.printCacheStatus(),null!=this.maxConcurrentRequests&&this.activeBlockLoadsCount>=this.maxConcurrentRequests)this.logger.log("checkBlockToLoad: max loads exceeded");else{var t=null;this.blocks.forEach((function(e){e.getState()===i.i.STATE_WAITING_TO_LOAD&&(t=e)})),t&&(t.load(),this.activeBlockLoadsCount++,this.printCacheStatus())}},e.prototype.getBlockState=function(){var t={};return this.blocks.forEach((function(e){var o=e.getBlockStateJson(),i=o.id,r=o.state;t[i]=r})),t},e.prototype.printCacheStatus=function(){this.logger.isLogging()&&this.logger.log("printCacheStatus: activePageLoadsCount = "+this.activeBlockLoadsCount+", blocks = "+JSON.stringify(this.getBlockState()))},e.prototype.isLoading=function(){return this.activeBlockLoadsCount>0},e.BLOCK_LOADER_FINISHED_EVENT="blockLoaderFinished",l([r.o7],e.prototype,"postConstruct",null),l([h(0,(0,r.Vf)("loggerFactory"))],e.prototype,"setBeans",null),e=o=l([(0,r.dR)("rowNodeBlockLoader")],e)}(n.X)},8990:function(t,e,o){o.d(e,{m:function(){return a}});var i=o(6788),r=o(46599),n=o(16892),s=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},a=function(){function t(){}return t.prototype.doFullSort=function(t,e){var o=t.map((function(t,e){return{currentPos:e,rowNode:t}}));return o.sort(this.compareRowNodes.bind(this,e)),o.map((function(t){return t.rowNode}))},t.prototype.compareRowNodes=function(t,e,o){for(var i=e.rowNode,s=o.rowNode,a=0,l=t.length;a<l;a++){var h=t[a],p=h.sort===n.Y.SORT_DESC,u=this.getValue(i,h.column),d=this.getValue(s,h.column),c=void 0,f=this.getComparator(h,i);if(c=f?f(u,d,i,s,p):r._.defaultComparator(u,d,this.gridOptionsWrapper.isAccentedSort()),!isNaN(c)&&0!==c)return h.sort===n.Y.SORT_ASC?c:-1*c}return e.currentPos-o.currentPos},t.prototype.getComparator=function(t,e){var o=t.column,i=o.getColDef().comparator;if(null!=i)return i;if(e.rowGroupColumn)return e.rowGroupColumn.getColDef().comparator;if(o.getColDef().showRowGroup){var r=!e.group&&o.getColDef().field;if(r){var n=this.columnModel.getPrimaryColumn(r);if(n)return n.getColDef().comparator}}},t.prototype.getValue=function(t,e){return this.valueService.getValue(e,t,!1,!1)},s([(0,i.ds)("gridOptionsWrapper")],t.prototype,"gridOptionsWrapper",void 0),s([(0,i.ds)("valueService")],t.prototype,"valueService",void 0),s([(0,i.ds)("columnModel")],t.prototype,"columnModel",void 0),t=s([(0,i.dR)("rowNodeSorter")],t)}()},62694:function(t,e,o){o.d(e,{K:function(){return l}});var i=o(6788),r=o(72925),n=o(25644),s=function(){var t=function(e,o){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o])},t(e,o)};return function(e,o){function i(){this.constructor=e}t(e,o),e.prototype=null===o?Object.create(o):(i.prototype=o.prototype,new i)}}(),a=function(t,e,o,i){var r,n=arguments.length,s=n<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,o):i;if("object"===typeof Reflect&&"function"===typeof Reflect.decorate)s=Reflect.decorate(t,e,o,i);else for(var a=t.length-1;a>=0;a--)(r=t[a])&&(s=(n<3?r(s):n>3?r(e,o,s):r(e,o))||s);return n>3&&s&&Object.defineProperty(e,o,s),s},l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return s(e,t),e.prototype.init=function(){this.groupSelectsChildren=this.gridOptionsWrapper.isGroupSelectsChildren(),this.isRowSelectableFunc=this.gridOptionsWrapper.getIsRowSelectableFunc()},e.prototype.updateSelectableAfterGrouping=function(t){if(this.isRowSelectableFunc){this.recurseDown(t.childrenAfterGroup,(function(t){return t.childrenAfterGroup}))}},e.prototype.recurseDown=function(t,e){var o=this;t&&t.forEach((function(t){if(t.group){var i;if(t.hasChildren()&&o.recurseDown(e(t),e),o.groupSelectsChildren){var r=(e(t)||[]).find((function(t){return!0===t.selectable}));i=(0,n.exists)(r)}else i=!!o.isRowSelectableFunc&&o.isRowSelectableFunc(t);t.setRowSelectable(i)}}))},a([i.o7],e.prototype,"init",null),e=a([(0,i.dR)("selectableService")],e)}(r.X)}}]);
|